I'm trying to just get a simple pdf file created using our admin system but I come up against this error: Error: Couldn't open PDF file 'directory/filename'...
I'm getting this error when I attempt to place a \N{MODIFIER LETTER APOSTROPHE} (Unicode value U+02BC) in a textflow. I'm using PDFlib 6 and the Sabon Std...
Jeffrey Berger
jeff@...
Dec 4, 2008 4:06 pm
19181
Hi, I assume this character has not a corresponding glyph in the font. You can suppress this error if you set "textwarning=false". Then the character will be...
Kurt Stützer
kurt@...
Dec 5, 2008 2:51 pm
19182
Hi Kurt! Thanks for the response. Yes, I thought the problem was that the corresponding glyph was not provided in the font. But here's the puzzle ... The glyph...
Jeffrey Berger
jeff@...
Dec 5, 2008 3:20 pm
19183
I have an application in which the results will be printed on clear stickers for a window decal, the problem is the PDF output needs to be flipped. Any way to...
It sounds like you want to create a mirror image of the page. There doesn't seem to be anything "easy" to do that with - i.e. no built in functions. Maybe...
Generating mirrored (flipped) page content is actually trivial with PDFlib. Simply start the page with the following commands: PDF_translate(p, page_width, 0);...
Hi Jeffrey, please send the respective font to our support. Then we can analyze the problem. Kurt ... -- ...
Kurt Stützer
kurt@...
Dec 8, 2008 3:39 pm
19187
Kurt, Thanks for the offer of assistance. Looking more into the problem, it seems that Adobe (from whom we purchased the font) does _not_ document that the...
Jeffrey Berger
jeff@...
Dec 8, 2008 4:16 pm
19188
Jeffrey, ... That's correct. But you can suppress the error message by setting glyphwarning=false (e.g. PDF_set_parameter(p, "glyphwarning", "false"); (here in...
Kurt Stützer
kurt@...
Dec 8, 2008 4:23 pm
19191
Hi, we recently purchased pCOS in order to get all links with their positions out of PDFs. We noticed that not all links that are clickable in Acrobat are...
... This is a bit tricky: there is a feature in Acrobat where it analyzes the content of the page and automatically offers clickable actions, without any...
... It seems you have to refine your research methods :-) The PDFlib API reference discusses the "fillrule" parameter and option which allows you to select the...
... Hi Thomas, thanks for the reply - we assumed that this is the case. We also use TET, so the idea of using TET for the links is already in our heads ;-) One...
... Good :-) ... That's true. Although TET will combine the parts of hyphenated words, it will not be able to synthesize links out of arbitrary fragments. ... ...
Problem : I want to assign a Text (GOOGLE) to my .Textout property of an object which displays a text on the pdf. on clicking the (GOOGLE) text it should...
... Sounds like a standard web link as demonstrated in the Cookbook sample at http://www.pdflib.com/pdflib-cookbook/interactive-elements/link-annotations/ ...
Thank you for the reply Thomas. As I am using VB6 this is the code syntax that looks like Actually I am displaying the text something like this .Textout =...
Hi Jens, I doesn't understand your construction complelety, but I think that your problem was caused by different loadings of the same font: In PDFlib, a font...
Kurt Stützer
kurt@...
Dec 12, 2008 10:33 am
19204
Hi, plz have a code as below: int PDFlib::load_image (string imagetype, string filename, string optlist) throw(PDFlib::Exception) { int retval = 0; PDFCPP_TRY ...
Thanks a lot for your patience. First, the $random is a random value, cos I need different "unique" font-names for different fonts within my pdf. Second - and...
As I am using VB6 this is the code syntax that looks like Actually I am displaying the text something like this .Textout = "This is the Text" in the Pdf and I...
Hi, please look for our Cookbook example http://www.pdflib.com/pdflib-cookbook/interactive-elements/link-annotations/ Kurt ... -- ...
Kurt Stützer
kurt@...
Dec 15, 2008 4:20 pm
19219
Hi all, I need to write a tool to convert normal PDF files info PDF/A compliant files. On pdflib.com there is a sample code for convert PDF/A to PDF/A (which...
When creating big PDF table (say about 150000 rows and 3 columns), pdflib takes a long time to render PDF table. By rendering, I mean multiple calls to...
Hi, - if a cell contains only a single text line without font change, you should use textline instead of textflow. - if you know the cell sizes sufficient for...