Search the web
Sign In
New User? Sign Up
pdflib · PDFlib users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 19179 - 19221 of 19967   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19179
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'...
Helen
threehumps_b...
Offline Send Email
Dec 3, 2008
11:31 am
19180
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@...
Send Email
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@...
Send Email
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@...
Send Email
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...
Patrick Stuart
stuarttech
Offline Send Email
Dec 5, 2008
7:00 pm
19184
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...
David Steckbeck
dsteckbeck
Offline Send Email
Dec 8, 2008
4:44 am
19185
Generating mirrored (flipped) page content is actually trivial with PDFlib. Simply start the page with the following commands: PDF_translate(p, page_width, 0);...
Thomas Merz
thomasmerz1
Offline Send Email
Dec 8, 2008
12:50 pm
19186
Hi Jeffrey, please send the respective font to our support. Then we can analyze the problem. Kurt ... -- ...
Kurt Stützer
kurt@...
Send Email
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@...
Send Email
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@...
Send Email
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...
kopfnick
Offline Send Email
Dec 10, 2008
8:21 pm
19192
... 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...
Thomas Merz
thomasmerz1
Offline Send Email
Dec 10, 2008
8:47 pm
19193
Is there any way to fill using the even-odd rule? I've been searching through the pdflib manual and google, with no luck yet......
David Steckbeck
dsteckbeck
Offline Send Email
Dec 10, 2008
8:49 pm
19194
... 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...
Thomas Merz
thomasmerz1
Offline Send Email
Dec 10, 2008
8:56 pm
19195
;) yea, after I fired off the email, I found it. Thanks for the quick response!!! ________________________________ From: Thomas Merz <tm@...> To:...
David Steckbeck
dsteckbeck
Offline Send Email
Dec 10, 2008
8:59 pm
19196
... 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...
kopfnick
Offline Send Email
Dec 10, 2008
9:01 pm
19197
... 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. ... ...
Thomas Merz
thomasmerz1
Offline Send Email
Dec 10, 2008
9:09 pm
19198
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...
princi_fish
Offline Send Email
Dec 10, 2008
9:12 pm
19199
... Sounds like a standard web link as demonstrated in the Cookbook sample at http://www.pdflib.com/pdflib-cookbook/interactive-elements/link-annotations/ ...
Thomas Merz
thomasmerz1
Offline Send Email
Dec 10, 2008
9:17 pm
19200
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 =...
princi_fish
Offline Send Email
Dec 10, 2008
9:40 pm
19201
$searchpath = "..\data"; $outfilename = "Out.pdf"; $pdffile = "Report.pdf"; $pdf_generartor = PDF_new(); PDF_set_parameter($pdf_generartor, "errorpolicy",...
vandematram_varun
vandematram_...
Offline Send Email
Dec 11, 2008
1:55 pm
19202
Hello! I'm trying to style some text width inline-options. This is my text: <leading 92%><fontname inlineschrift7894 encoding winansi>PRIVATE ...
jens_koerte
Offline Send Email
Dec 11, 2008
4:46 pm
19203
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@...
Send Email
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 ...
$ AsHIsH $
ashish_80gb
Offline Send Email
Dec 12, 2008
12:44 pm
19205
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...
jens_koerte
Offline Send Email
Dec 12, 2008
1:21 pm
19217
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...
princi_fish
Offline Send Email
Dec 15, 2008
3:21 pm
19218
Hi, please look for our Cookbook example http://www.pdflib.com/pdflib-cookbook/interactive-elements/link-annotations/ Kurt ... -- ...
Kurt Stützer
kurt@...
Send Email
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...
georg_weis
Offline Send Email
Dec 16, 2008
10:43 am
19220
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...
sishik
Offline Send Email
Dec 16, 2008
6:31 pm
19221
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...
Kurt Stützer
kurt@...
Send Email
Dec 16, 2008
6:52 pm
Messages 19179 - 19221 of 19967   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help