Forum Replies Created
-
AuthorPosts
-
in reply to: overflow: hidden applied to table div causing missing data May 21, 2014 at 11:20#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 May 21, 2014 at 11:37#29538In 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 May 21, 2014 at 11:42#29492If 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 May 29, 2014 at 10:21#26927Hi,
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> May 29, 2014 at 10:28in reply to: HTML/CSS rendering issues May 29, 2014 at 11:11#26928Hi,
I have below html stream with ‘before’, ‘after’ CSS selectors. In the generated PDF, these styles are missing. Please help.some div content herein reply to: HTML/CSS rendering issues May 29, 2014 at 11:11#26929Hi,
I have below html stream with ‘before’, ‘after’ CSS selectors. In the generated PDF, these styles are missing. Please help.some div content herein reply to: Problem with CSS before after selectors May 29, 2014 at 11:30#29541By the link you may find a list of supported CSS selectors:
http://pd4ml.com/cookbook/pd4ml_proprietary_css_features.htmI am afraid “before” and “after” pseudo-elements in selectors are not supported
in reply to: General questions / FAQ May 29, 2014 at 14:26#26930Hi 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: getting displayed as ? May 29, 2014 at 14:27#29542Try do download v385fx8 again and reinstall. There were some distribution package build issues.
in reply to: getting displayed as ? May 29, 2014 at 14:39in reply to: TTF embedding June 5, 2014 at 05:38#27316Any 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 June 9, 2014 at 09:33#26931Hi 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 June 9, 2014 at 14:49#26932We’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 June 13, 2014 at 12:05#26933Hi ,
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 -
AuthorPosts