Re: [PHP-WIN] PDF Library/Extention

2004-06-17 Thread Achilles Maroulis
What I use is pdflib in PHP 4.3.3 which comes for other languages as well. (http://www.pdflib.com, http://www.php.net/manual/en/ref.pdf.php) There is also ClibPDF which I haven't tried (http://www.fastio.com, http://www.php.net/manual/en/ref.cpdf.php) Both extensions require license for commercial

RE: [PHP-WIN] PDF Acrobat Issue *Strange* [resolved]

2004-06-16 Thread trippin
I was using the ezpdf library which appears that it is in someway incompatible with windows. The fpdf library appears to not only be better, but more importantly work. Thanks Trevor and Charles for help on this issue. Checking my error log and writting a simple test document helped me discover th

RE: [PHP-WIN] PDF Acrobat Issue *Strange*

2004-06-16 Thread Gryffyn, Trevor
--Original Message- > From: Charles P. Killmer [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 15, 2004 2:20 PM > To: [EMAIL PROTECTED] > Subject: RE: [PHP-WIN] PDF Acrobat Issue *Strange* > > > If the headers and data are correct then the server is handling it > correctl

Re: [PHP-WIN] PDF Acrobat Issue *Strange*

2004-06-15 Thread trippin
Thank you very much for you observation. I am also aware of this issue, but I have tried this already and it didn't help, because it is sending the correct mime-type as far as I can tell. Internet Explorer reconizes it as a Adobe Acrobat Document so I can't figure out why it won't open! I have t

RE: [PHP-WIN] PDF Acrobat Issue *Strange*

2004-06-15 Thread Charles P. Killmer
If the headers and data are correct then the server is handling it correctly. What I have notice in the past is that simply hitting refresh in IE doesn't always work. Try copying to url to the clipboard and going to some other site. Like google.com. Then paste the url back from the clipboard.

Re: [PHP-WIN] PDF creation on the fly.

2003-10-18 Thread Ferhat
this does not have a command line tool. I need something like that for on the fly operation. Isn't it? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] PDF creation on the fly.

2003-10-18 Thread rouvas
On Saturday 18 October 2003 19:05, Ferhat wrote: > Hi, > > I have a php/ mysl web sites. I have one page of timeseries wchih I plot > with Gnuplot as JPG. > > Now, I would to add a "save as PDF" button to this page. What I was > dreaming is when you click on the button the same HTML page will be sa

RE: [PHP-WIN] PDF library

2003-10-09 Thread N . A . Morgan
Not sure about the PDF library, but you could use FPDF at www.fpdf.org. This is a free class that can be included into your php pages to create PDF documents. There is an image method that allows you to add JPEG (all flavours) and PNG (all flavours except Interlacing and Alpha Channel). Hope this

Re: [PHP-WIN] PDF and FDF

2003-09-08 Thread Cesar Cordovez
Hi List, Answering my own question... I found this user comment at php.net/pdf_open_file. As you can see is dated feb 2002 (kind of old) Is this still true? Does anyone knows [EMAIL PROTECTED] Help! =) Thanks. Cesar gbl at bso2001 dot com 19-Feb-2002 08:30 Appending to PDF files: plainly,

Re: [PHP-WIN] PDF extensions seems to do not work properly on IE

2003-01-23 Thread Dash McElroy
I've used PDFlib a reasonable amount on *nix platforms, but it works just fine in IE. Try saving the file to disk and opening it with a text editor to see if there are any PHP errors corrupting the PDF output. I had this happen a few times with uninitialized variables, or undefined functions or wha

Re: [PHP-WIN] PDF

2003-01-17 Thread Dash McElroy
If the PDF forms you "print on top of" are forms, you can use FDF (Forms Data Format) to fill out the form. There are several FDF options. One is to use Adobe's FDF program thingie. Others are listed in the comments on this page (http://www.php.net/manual/en/ref.fdf.php). I used one of the ones lis

Re: [PHP-WIN] PDF Files...

2002-11-12 Thread Jeff Pearson
If you are running on Windows, ActivePDF (www.activepdf.com) works pretty well and will do what you want it to do. Jeff Pearson Advanced Digital Technology "Jim Hunter" <[EMAIL PROTECTED]> wrote in message news:3D576EE5.10.00832@;WORKSTATION... There are two major PDF libraries available. O

Re: [PHP-WIN] PDF Files...

2002-08-16 Thread robert mischke
> >> The last portion of your request is not possible under >> > the current > libraries that are out there. I was unable to >> find one > anyway. So, for now, you're out of luck. > > In NO language? Not even ASP? PDFlib have got an "extension", called PDI. It allows you to edit existing PDF

Re: [PHP-WIN] PDF Files...

2002-08-12 Thread Brian McGarvie
>> The last portion of your request is not possible under >> the current libraries that are out there. I was unable to >> find one anyway. So, for now, you're out of luck. In NO language? Not even ASP? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP-WIN] PDF Files...

2002-08-12 Thread Flint Doungchak
Brian, We currently use the PDFlib that requires a license for commercial use. It shoulds like you will also need to use the FDF function in PHP to fill forms. Both links to the documentation do a good job of explaining and providing an explanation as to how to impliment these feature in PHP.

Re: [PHP-WIN] PDF Files...

2002-08-12 Thread Jim Hunter
There are two major PDF libraries available. One from www.pdflib.com and one from www.fastio.com. The PDFLib is supposed to be better supportive of PHP. You can create PDF, but I'm not sure how much editing of one you are going to be able to do, perhaps you can. And you can definitely use a form t

RE: [PHP-WIN] PDF Forms

2002-07-31 Thread Asendorf, John
I think you'd actually have to tear apart the PDF file with a text editor, determine where you want the field and do a replace on that space... Luke Welling and Laura Thomson gave a pretty good talk about this at the PHP conference in San Diego in 2001... they showed how you can tear apart the PDF

RE: [PHP-WIN] PDF Forms

2002-07-31 Thread Conover, Ryan
It is impossible to create fields from what I know using PDFLIB. Ryan Conover [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.pitt.edu/~rscst25/ -Original Message- From: Flint Doungchak [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 6:29 PM To: PHP Windows Subject: [PHP-WIN] PD

RE: [PHP-WIN] PDF Form download changes in IE broke my app?

2002-06-18 Thread Asendorf, John
Never mind... I know what caused it. I recently set the web server to expire cotent immediately... I'll bet that's what did it. - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-

Re: [PHP-WIN] PDF generation

2002-03-11 Thread alain
Look at pdf_translate() and pdf_set_text_pos() functions in the pdf lib doc. A+ Alain On Mon, Mar 11, 2002 at 05:12:27PM -0800, Ethan Nelson wrote: > Hello all you developers, > > I've looked at the news groups to find an answer, but to no avail... > > My code looks something like this: and I w

Re: [PHP-WIN] PDF document creation on IE 5.5

2001-11-08 Thread Alain Samoun
I think that you are missing some files, have a look at: http://www.adobe.com/support/techdocs/98fe.htm A+ Alain On Thu, Nov 08, 2001 at 08:55:48AM -0800, Priya Chanu wrote: > I compiled PDflib support for creatinf PDF document > with php, it works perfectly fine on netscape. > > But on IE 5.5 +

Re: [PHP-WIN] PDF + WIN32

2001-03-12 Thread Alain Samoun
You should probably do an installation with www.php4win.de ,then all the extensions modules that you need can be instantiated in the php.ini file. Alain On Mon, Mar 12, 2001 at 09:23:13AM +, Ben Cairns wrote: > Has anybody had any luck creating a PDF on a Win32 machine using php. > > Here

Re: [PHP-WIN] PDF Questions

2001-01-30 Thread Alain Samoun
www.pdflib.com Alain On Tue, Jan 30, 2001 at 09:26:40AM -0500, Conover, Ryan wrote: > Does anyone know of where I could to get more information on pdflib and how > it works. > > Ryan > > -- > PHP Windows Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For addi