Re: Python Imaging Library (PIL): create PDF from scratch
Like David said now i used PIL for individual images and reportlab to generate a pdf. Thanks for your advices :) -- http://mail.python.org/mailman/listinfo/python-list
Re: Python Imaging Library (PIL): create PDF from scratch
zelegolas wrote: Hi, I have some scan generated by SANE and i would like to do some transformation (like crop, brightness and resize) and finaly put all those images in PDF file. With PIL i can do all the transformations that i want. But i don't know how i can create from scratch a PDF. I'm not even sure that PIL is the right library for that. Any help/informations will be appreciate Use PIL to fiddle the individual images, and reportlab to build a pdf from the (now tweaked) images. --Scott David Daniels scott.dani...@acm.org -- http://mail.python.org/mailman/listinfo/python-list
Re: Python Imaging Library (PIL): create PDF from scratch
zelegolas wrote: > Hi, > > I have some scan generated by SANE and i would like to do some > transformation (like crop, brightness and resize) and finaly put all > those images in PDF file. > > With PIL i can do all the transformations that i want. But i don't > know how i can create from scratch a PDF. I'm not even sure that PIL > is the right library for that. > PIL is great for graphics, but I use ReportLab's open source stuff (see www.reportlab.org) for creating PDFs - that's what it was designed for, and you can easily incorporate your graphics. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ -- http://mail.python.org/mailman/listinfo/python-list
Python Imaging Library (PIL): create PDF from scratch
Hi, I have some scan generated by SANE and i would like to do some transformation (like crop, brightness and resize) and finaly put all those images in PDF file. With PIL i can do all the transformations that i want. But i don't know how i can create from scratch a PDF. I'm not even sure that PIL is the right library for that. Any help/informations will be appreciate -- http://mail.python.org/mailman/listinfo/python-list