Forum Replies Created

Viewing 15 posts - 2,641 through 2,655 (of 4,234 total)
  • Author
    Posts
  • #29539

    Please contact support pd4ml com and provide all relevant data: Java code and source HTML snippets, resulting PDF etc.

    in reply to: Problem with PDF version1.3
    #29538

    In fact even PDF 1.3 should be ok for PD4ML. The exception is only tells, that the version number format is invalid. (The test is performed mostly to make sure a parsed file is PDF)

    [language=java:1gboopf0]String msg = “Invalid PDF version prefix: “;

    int index = -1;
    if (!comment.startsWith(“PDF-“) || (index = comment.indexOf('.')) < 0) {
    throw new ParseException( msg + comment );
    }
    try {
    versionMajor = Integer.parseInt(comment.substring(4, index));
    versionMinor = Integer.parseInt(comment.substring(index + 1));
    } catch (NumberFormatException exception) {
    throw new ParseException( msg + comment );
    }[/language:1gboopf0]

    I see, visually “PDF-1.3” is correct, and should pass the above test. So I would suspect there are trailing invisible chars etc.

    A PDF sample would help to analyze the issue.

    in reply to: Different footer on the last page
    #29492

    If the total number of PDF pages is not known, it is a bit tricky.

    tag supports scope attribute to define a page scope, where particular footer definition is supposed to go. For example scope=”2+,skiplast” There is a reason, why “skiplast” option is supported, but “lastpage” option is not.

    See html-pdf-faq-f1/scope-lastpage-t356.html for brief explanation and a workaround.

    in reply to: HTML/CSS rendering issues
    #26927

    Hi,

    I have applied below style to an image. But I have not found style is being applied to the image. Any help would be appreciated.

    .ShadowStyle{
    -webkit-box-shadow: 3px 3px 3px #7C7C7C;
    box-shadow: 3px 3px 3px #7C7C7C;
    }

    Thanks

    in reply to: Issue with shadow style to <img>
    #29540

    Unfortunately for the time being the style is not supported by PD4ML.

    Try PD4ML Web, based on WebKit rendering engine – there is a chance it works with it.

    in reply to: HTML/CSS rendering issues
    #26928

    Hi,
    I have below html stream with ‘before’, ‘after’ CSS selectors. In the generated PDF, these styles are missing. Please help.

    some div content here
    in reply to: HTML/CSS rendering issues
    #26929

    Hi,
    I have below html stream with ‘before’, ‘after’ CSS selectors. In the generated PDF, these styles are missing. Please help.

    some div content here
    in reply to: Problem with CSS before after selectors
    #29541

    By the link you may find a list of supported CSS selectors:
    http://pd4ml.com/cookbook/pd4ml_proprietary_css_features.htm

    I am afraid “before” and “after” pseudo-elements in selectors are not supported

    in reply to: General questions / FAQ
    #26930

    Hi I am using licensed version of PD4ML Java Library.

    All my   in pdf are getting display as ?

    This was not happening with the demo version of the library   was displayed as space.

    Thanks

    in reply to: &nbsp; getting displayed as ?
    #29542

    Try do download v385fx8 again and reinstall. There were some distribution package build issues.

    in reply to: &nbsp; getting displayed as ?
    #29543

    Thanks

    This has resolved the issue.

    in reply to: TTF embedding
    #27316

    Any solution to display arabic text. I am facing the same problem. The characters are coming as ????. Although in my case the data I am passing through the StringReader as I am receiving the data from a WebService.

    in reply to: General questions / FAQ
    #26931

    Hi everybody !

    I’d like to know how to overwrite a file if it already exists, instead of automatically rename it with a random number ?
    When I create a PDF, PD4ML give me the abitlity to randomly generate a name, give a personnal name (pd4ml:savefile => name=”fooo”), or give a personnal name + random number (with the same attribute).
    However, in my case, I need to overwrite file if it already exists. I’ve not seen anything about it in the Tag Library Documentation, and this time Google isn’t my friend…

    Could someone help me please ? I’d like to avoid create another class to check the existence of my file, and delete it before calling PD4ML.

    in reply to: General questions / FAQ
    #26932

    We’re using PD4ML to produce customer letters that will be sent to a print company for printing/distribution. The print company uses digital print and has strict requirements for image resolution (300dpi), colourspace (CMYK) and font colour (PURE black). So far, we have not been able to produce PDFs that meet these requirements, even though we believe that we’ve set properties in HTML properly.

    First thing I’d like to confirm is, does PD4ML support “print ready” PDFs? And, if so, are there settings / properties for images and font colour that we should be using?

    in reply to: HTML/CSS rendering issues
    #26933

    Hi ,

    We are using licensed version of PD4ML(3.8.5fx8) and looking out for your support here.

    In Our project we have a requirement to export the content ( having highcharts and Html ) to PDF.

    we are using HighCharts, which is a third party library written in Javascript/JQuery that provides some Javascript functions to pass the data required to render the charts.
    But we are experiencing issues with PD4ML is not supporting javascript functions where it is necessary to send some dynamic data to highcharts to render charts.

    Can you let us know whether PD4ML will support javascript? or can you provide any patch to support java script or highcharts ?

    Regards,
    Kamesh

Viewing 15 posts - 2,641 through 2,655 (of 4,234 total)