Forum Replies Created

Viewing 15 posts - 3,241 through 3,255 (of 4,234 total)
  • Author
    Posts
  • in reply to: HTML/CSS rendering issues
    #27093

    I am trying to create up-arrow using css. I have used all supported css properties but it is not working as expcted

    Here is JSFiddle:

    https://jsfiddle.net/kdmuwnne/

    in reply to: Header style not matching between HTML page and exported PDF
    #29908

    PD4ML Team

    Please reply

    in reply to: Header style not matching between HTML page and exported PDF
    #29909

    A sample of source HTML and resulting PDF would help a lot to analyze the issue.

    in reply to: border is not working
    #29916

    Try to use SVG instead

    [language=xml:19nbq2jh]

    [/language:19nbq2jh]

    (and update PD4ML to newer version if needed)

    in reply to: Local converter 398 fx4/fx5 crash with a NPE
    #29887

    After a successful run of 380fx3 it should create pd4browser.properties. Copy it to a location of the problematic version.

    in reply to: Local converter 398 fx4/fx5 crash with a NPE
    #29888

    I did, adapted tie viewer paths to the following
    <br /> viewer.executeble=c:\Program Files (x86)\Adobe\Acrobat Reader DC\ReaderAcroRd32.exe<br /> dir.viewer=c:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader<br />

    and I’m still getting an exception, the only difference now being the “unknown source” instead of a line number at the deepest level:
    <br /> c:tempvakkk>java -Xmx1024m -jar libpd4ml.jar<br /> java.lang.NullPointerException<br /> at java.io.File.<init>(Unknown Source)<br /> at org.zefer.pd4ml.tools.PD4Browser.o00000(Unknown Source)<br /> at org.zefer.pd4ml.tools.PD4Browser.<init>(Unknown Source)<br /> at org.zefer.pd4ml.tools.PD4Browser.showGUI(Unknown Source)<br /> at org.zefer.pd4ml.tools.PD4Browser.main(Unknown Source)<br />

    There is only “viewer.executeble” though, no “rtf”.

    in reply to: Header style not matching between HTML page and exported PDF
    #29910

    Please let me know how to upload images

    in reply to: Header style not matching between HTML page and exported PDF
    #29911

    You may pack all relevant resources and send to support pd4ml com

    in reply to: Local converter 398 fx4/fx5 crash with a NPE
    #29889

    Try http://pd4ml.com/i/pd4ml_debug.jar – it should give an exact line number of the exception.

    in reply to: can not load image error when converting from html to pdf
    #29904

    So how to fix this issue when using pd4ml libs?
    Please let me know how to fix this issue in simple steps. Hope there must be some approach to solve this problem.
    We have a paid licence for pd4ml from corporate side. I don’t this just for this reason we need to lookout for some other third party libs. 🙁 🙁
    Awaiting for help.
    Thanks,
    Sudhakar Makam

    in reply to: can not load image error when converting from html to pdf
    #29905

    The diag line explicitly says there are network (firewall or routing) issues:

    errno: 111 (Connection refused), error: Connection refused (local port 50735 to address 0:0:0:0:0:0:0:0, remote port 80 to address 74.208.20.166): http://www.daycomsolutions.com/Support/ ... 050w50.JPG

    The server or workstation where PD4ML runs cannot access HTTP resources of 74.208.20.166. Your network admin should check it and resolve it. If it is not possible by any security reason etc, you need to configure PD4ML to go via your company proxy.

    in reply to: How to use Noto Sans (otf) font for Chinese characters
    #29734

    Looking forward to a resolution to this problem. The PD4ML reference says that we can use OTF but we get the following error as mentioned in the earlier post.

    Please help, PD4ML.

    @franco.pentangeli wrote:

    Hi,
    I want to use Noto Sans font to convert my html page with chinese characters into pdf, but Noto Sans is in .otf format.
    When I try to execute pd4ml, it says (obviously) to me that:

    java.io.IOException: file:chinese_ttf/fonts/NotoSansCJKtc-Regular.otf does not seem to be TTF<br />

    How can I do it?
    Thanks

    in reply to: can not load image error when converting from html to pdf
    #29906

    Thanks PD4ML team, how to configure PD4ML to go via company proxy or other means by doing programatically . Any link for some samples.

    PD4ML version used in my project is 370.
    Up on browsing and going through pd4ml guide i found below sample code. But the constant PD4Constants.PD4ML_HTTP_PROXY was introduced in version 371.
    So is there any work around for version 370?
    Map m = new HashMap();
    m.put(PD4Constants.PD4ML_HTTP_PROXY, proxyHost + “:” + proxyPort);
    pd4ml.setDynamicParams(m);

    Thanks in advance.

    in reply to: can not load image error when converting from html to pdf
    #29907

    You can configure your application to use proxy Java-generic way with the following code:

    [language=java:3lf5d9c5]String host=”your.proxy.br”;
    String port=”80″; // change it to your proxy port number

    // older JDK approach
    System.getProperties().setProperty(“proxySet”, “true”);
    System.getProperties().setProperty(“proxyHost”, host);
    System.getProperties().setProperty(“proxyPort”, port);

    // newer JDK approach
    System.getProperties().setProperty(“http.proxySet”, “true”);
    System.getProperties().setProperty(“http.proxyHost”, host);
    System.getProperties().setProperty(“http.proxyPort”, port);[/language:3lf5d9c5]

    The similar can be achieved with a JVM command line parameters:

    -Dhttp.proxySet=true -Dhttp.proxyPort= -Dhttp.proxyHost=

    in reply to: Troubleshooting
    #27095

    Hi,
    we are encountering memory leak issue : see screenshot of memory used heap during 48h.

    When analyzing the heap dump, we found one instance of class org.zefer.pd4ml.pdf.c is holding an array of 46 millions of object for a total size of 1G
    (see second screenshot)

    The version used is PD4ML Pro 3.9.9

    Thanks

Viewing 15 posts - 3,241 through 3,255 (of 4,234 total)