when trying to generate pdf's (PHP) with special chars we run into the following; using: PDF_show($manual, "\x8692;x45\x47\x4392;x83\xAC\x4E");//farsi everything...
7813
spreadlegslisa1
Apr 27, 2003 6:29 am
Hi guys, I am 24 and very unattractive. Guys never ask me out and I would love to have a date. I keep pics in my bio at the link below but I am sure you don't...
7814
Beat Schilliger
beat_schilliger
Apr 27, 2003 9:02 am
Guten Tag, besten Dank für Ihr Mail. Vom 26. April bis und mit 11. Mai 2003 kann ich meine Mails nur ganz sporadisch bis gar nicht beantworten. Nach dieser...
7815
Alexander Wirtz
wirtz
Apr 27, 2003 6:52 pm
Could you please remove that user? I'm not inclined to set up a filter just for that "person" until he/she returns from whatever activity in mid-may. Thanks ...
7816
David Austin
daustin7777
Apr 28, 2003 1:39 pm
I'd like to resample some huge TIFF files to smaller dimensions and lower DPI. Ex. 8" x 10", 300 dpi image resample to 4" x 5", 72 dpi. Are there any tricks...
7817
Thomas Merz
thomasmerz1
Apr 28, 2003 1:42 pm
PDFlib never touches the actual pixel data. You must therefore preprocess the image data before calling PDF_load_image(). Thomas ... -- ...
7818
flogie123
Apr 28, 2003 6:51 pm
i am using pdflib 4.03 and php 4.31. I can create a pdf document and the text shows up fine, but when i ad images, they do not display in the document. I can...
7819
Maarten W. Elsenaar
quorza
Apr 28, 2003 7:38 pm
Try: Image = oPDF.open_image_file("{type}","{filesrc}", "", 0) ... oPDFplace_image image, x, y, 1 Met vriendelijke Groeten Maarten W. Elsenaar Quality Design...
7820
flogie123
Apr 28, 2003 8:02 pm
i am using php, the code you sent looks like asp type code....
7821
barker941
Apr 28, 2003 10:36 pm
I'm having troubles with the Block Plugin. I'm running Windows XP and Acrobat 5.05 and everytime I set a block, and then go to save, it's giving me errors and...
7822
Leonard Rosenthol
leonardr@...
Apr 28, 2003 11:52 pm
... OR postprocess the PDF using something like PDF Enhancer (http://www.pdfsages.com/enhancer.html). Leonard...
7823
Chris Thompson
gangstahcodah
Apr 29, 2003 2:22 am
Hello all, When my company heard that I knew what PDFLib was, that meant I was the expert and was given the project. w00t! My question is VERY newbie I'm sure...
7824
Teller Coates
teller@...
Apr 29, 2003 3:15 pm
You might just specify your page dimensions for landscape printing. ... From: Chris Thompson [mailto:gangstahcodah@...] Sent: Monday, April 28, 2003 9:46...
7825
j_quiroz_v
Apr 29, 2003 4:03 pm
Hi, I am creating PDF files using PDFLib, on php, and being served by an apache server. My problem is that after opening a PDF file through the web server (...
7826
j_quiroz_v
Apr 29, 2003 4:44 pm
I would like to be able to include data in my pdf file, but that is outside the visible area ( as a security feauture ) I know that that crops in Acrobat are...
7827
Rob O'Mahoney
rob_omahoney
Apr 29, 2003 5:34 pm
Hi, I am trying to generate a PDF file in VB.NET code. I am using pdflib 4.0.3. The problem I am having is that the first pdflib function I call after...
7828
Rob Laveaux
rlaveaux@...
Apr 29, 2003 6:37 pm
... You should call PDF_set_info after PDF_open_document. HTH, - Rob...
7829
Rob O'Mahoney
rob_omahoney
Apr 29, 2003 8:10 pm
I'm sorry if I did not make this clear. Here is the code I am using: oPDF = New PDFlib_com.PDF() lretval = oPDF.open_file(sFilePath) oPDF.set_info("Creator",...
7830
Rainer Schaaf
rjsatwork
Apr 29, 2003 8:18 pm
Hi, normally this means that you did not make it out of the object scope because the open_file() failed. You should check the return value of open_file() to...
7831
Thomas Merz
thomasmerz1
Apr 29, 2003 8:29 pm
Sure -- simply draw outside the page margins (MediaBox as specified by width and heigth or CropBox). Thomas ... -- ...
7832
Thomas Merz
thomasmerz1
Apr 29, 2003 8:30 pm
You don't check the return value of open_file() against -1. If it fails for some reason you will remain in object scope, resulting in the error message in the...
7833
Rob Laveaux
rlaveaux@...
Apr 29, 2003 9:21 pm
... What is the return value of PDF_open_file? It looks like it fails creating the file. HTH, - Rob...
7834
itchywombat
Apr 30, 2003 2:09 am
Sorry for my English, first. I am making php program which produces pdf file on existing pdf formatted document. So far I have no problem displaying the pg...
7835
Rob O'Mahoney
rob_omahoney
Apr 30, 2003 1:04 pm
You are right, it does fail creating the file. The return code is -1 and the only error message I can seem to get out of VB is "System.Exception: 0," I...
7836
Thomas Merz
thomasmerz1
Apr 30, 2003 3:41 pm
Add oPDF.set_parameter("openwarning", "true") before your call to open_file() in order to get more details about the nature of the file open problem. Thomas ...
7837
Thomas Merz
thomasmerz1
Apr 30, 2003 4:17 pm
PDFlib GmbH is a proud sponsor of the following leading PDF events: PDF conference, Washington D.C., June 2 - 4, 2003 with Post-Conference Workshops, June 5...
7838
Andy
andykermes
Apr 30, 2003 9:48 pm
I have created a PDF that looks great on screen but not so great when printed. Smaller fonts do not appear very sharp [fuzzy and hard to read] and seem to be...
7839
Steven Smith
steve669ca
Apr 30, 2003 10:30 pm
Whoa Andy. I think you are missing the point of PDF. The Fonts are not at a D.P.I they are stored in a VECTOR format so they should always print sharp, the...
7840
Andy
andykermes
Apr 30, 2003 11:09 pm
Problem resolved..Yup it was printing the fonts as a raster graphic for some strange reason. Acrobat 5 shows it as vector but its printing as a raster on 2...