views:

171

answers:

2

Hi,

Actually i'm looking for a simple online WYSIWYG PDF editor where i can build simple formular (image,text,inputs) with drag&drop, but i could'nt find any.

Alternatively i would also accept a HTML WYSIWYG editor like ckeditor, but with an Grid option for placing absolute elements. With only absolute elements it should'nt be hard to write a PDF output out of the HTML source. I know the html2pdf stuff but last time i used it (about 1 year), those scripts where horrible slow and not quite exactly.

+1  A: 

Try Google Docs.

You save as PDF by opening File > Download as > PDF

Aillyn
thx for the reply, but actual i want to implement the editor to my own website, so I can make some pdf templates.
XzenTorXz
A: 

Google Docs can export as PDF.

Export as PDF


UPDATE

As your comment clarifies you would like to implement your own editor I would suggest you use FPDF which allows you to create PDFs in pure PHP without using PDFlib.

Edit: Use your favorite HTML WYSIWYG along with dompdf. Similar to the idea you yourself suggested.

Ashish
thx for the reply, but actual i want to implement the editor to my own website, so I can make some pdf templates.
XzenTorXz
FPDF? I've given a link in the answer.
Ashish
well fpdf is just for generating pdf files, i want a wysiwyg editor for generating pdf files (or a html editor (with a grid view) where i can parse the elements and then using fpdf to generate the pdf)
XzenTorXz
Favourite HTML WYSIWYG with [dompdf](http://www.digitaljunkies.ca/dompdf/)?
Ashish
And [this](http://ubuntuforums.org/showthread.php?t=1280787) has been talking about himself at some places.
Ashish
thx i guess i'll try out dompdf. the last is just wysiwyg in netbeans.
XzenTorXz