Re: [Image-SIG] calendar program using images

2007-05-02 Thread Michele Petrazzo - Unipex srl
SELMA GÜZEL wrote: Hi! (May be, you can think that the question is long a bit, but please read.Because i'm very bored ) I want to prepare a calendar with images like this format: -cut- Sorry, but we don't know anything about your program! You are talking about some TextCalendar.formatmonth

Re: [Image-SIG] Need Tiff Help

2007-05-16 Thread Michele Petrazzo - Unipex srl
Brad Allen wrote: Unfortunately PIL doesn't support TIFF Group 4 compressed images; this is an increasingly common form of TIFF compression used for black and white images such as faxes. I have tried to contact PIL commercial support but don't know if they are still in business since have not

Re: [Image-SIG] - Convert Tif to PNG

2007-08-04 Thread Michele Petrazzo - Unipex srl
Jeff van Aswegen wrote: Hi there Hi, (why wrote 3 messages to the list?) -cut- At least, I think, you have to send us a tiff sample for make some test! We can't help you without a sample where work! Bye, Michele smime.p7s Description: S/MIME Cryptographic Signature

Re: [Image-SIG] problem with Image.open and Image.save

2007-10-24 Thread Michele Petrazzo - Unipex srl
Hohmann-Marriott, Martin (NIH/NIBIB) [V] wrote: Hi there, I try to open, (manipulate) and save an image, but run into problems on a once in a while basis. My suspicion is that it has something to do with file access - so I made sure the image (new.tif) is not opened by any other program.

Re: [Image-SIG] Too many opened images

2007-10-24 Thread Michele Petrazzo - Unipex srl
Joancarles Casasín wrote: Hi, Is there any way to deal with the Too many opened images error? I mean, I've a script which opens a (huge) bunch of images, crops a part and adds it to a resulting image. When the process has been done with around 200 images the script raises the Too many

Re: [Image-SIG] Problem compiling PIL on Linux

2007-10-24 Thread Michele Petrazzo - Unipex srl
Felipe Gomes Vieira Ferreira wrote: Hi. I have just downloaded python pil, and when i try to compile it generate a lot off errors: Follow those pass: your_package_manager install python-image (in debian, apt-get install python-imaging, in fedora yum install ) OR your_package_manager

Re: [Image-SIG] How to specify the color of a text

2008-04-30 Thread Michele Petrazzo - Unipex srl
caf wrote: I failed to specify the color of the text while drawing a text into an image: import Image, ImageDraw, ImageColor, ImageFont image = Image.open(a.gif) draw = ImageDraw.Draw(image) font = ImageFont.truetype(arial.ttf, 15) color = blue draw.text((10, 10), HELLO, fill=color,