1
vote
2answers
34 views

Adding a transparent circle to an image on python with PIL

I have a python program that craetes a png file with a circle on it. Now I want this circle to be semi transparent, given an alpha value. Here is what I do: img_map = Image.new(some arguments here) ...
0
votes
1answer
66 views

Saving in PNG (using PIL library) after taking ImageChops.difference of two PNG files is producing transparent (or white) PNG image file

Here in this code I am taking difference of two same resolution PNG images ,then saving the difference,. Saving in JPEG works fine but in PNG, it produces a total tranparent PNG image file. look at ...
2
votes
2answers
125 views

Why saving as pdf with PIL creates a grey zone around fonts

I want to convert a pdf file to png to manipulate within Python, and the save it back as a pdf, but in the process a grey zone gets created around the fonts (my image is a simple black and white typed ...
-1
votes
1answer
98 views

How can I increase the pixel size in PNG file in Python?

Suppose I had a PNG image like this: https://www.box.com/s/dc4dut3yw1vhagm4y9ks And I want to increase the red dots size which means, they have to fill their square neighbors too. Like below: www ...
0
votes
2answers
169 views

How can I create an empty n*m PNG file in Python?

I would like to combine 4 PNG images to one PNG file. I know who to combine them with Image.paste method, but I couldn't create an save output file! Actually, I want to have a n*m empty PNG file, and ...
1
vote
2answers
389 views

Python PIL reading PNG from STDIN

I am having a problem reading png images from STDIN using PIL. When the image is written by PIL it is all scrambled, but if I write the file using simple file open, write and close the file is saved ...
0
votes
1answer
673 views

PIL ImageTk equivalent in Python 3.x

I'm developing an application with Tkinter that uses a database of png image files for icons. In order to use said images in the application, I open them using PIL's Image.open, run it through the ...
2
votes
2answers
684 views

Load RGBA bitmap with PIL

I tried to convert a 32-bit Bitmap to 32-bit PNG using PIL. from PIL import Image im = Image.open('example.bmp') print im.mode # it prints 'RGB', but expected was 'RGBA' im.save('output.png', ...
3
votes
2answers
2k views

How to install PIL with ZIP, JPEG, etc. on Ubuntu 11.10

I am trying to be able to import png, which I believe is from the PIL. I would also prefer if JPEG and the others were also working I am running Ubuntu 11.10. now from ...
13
votes
4answers
4k views

Convert RGBA PNG to RGB with PIL

I'm using PIL to convert a transparent PNG image uploaded with Django to a JPG file. The output looks broken. Source file Code Image.open(object.logo.path).save('/tmp/output.jpg', 'JPEG') or ...
5
votes
1answer
4k views

IOError: “decoder zip not available” using matplotlib PNG in ReportLab on Linux, works on Windows

I'm using ReportLab to print a chart produced by matplotlib. I'm able to do this on my Windows development machine without trouble. When I deploy to a Ubuntu server, however, the rendering fails ...
4
votes
1answer
963 views

Image to numpy-array: JPG vs. PNG

My system: Mac OS X 10.7 Python 2.7.1 NumPy version 1.5.1 My code: image = openImage(fileDir) print image image = np.asarray(image) print image If I run this: python main.py 1010.png the ...
2
votes
1answer
505 views

PIL - make 1 PNG from JPG and PNG frame

I have 2 images: PNG (99x97) with white, rotated frame and rest is in full transparency. JPG - is my generated thumbnail (80x80) Now I want to put thumbnail into my frame so it looks like some ...
2
votes
1answer
827 views

Converting grayscale png with transparency using PIL

PIL corrupt png images with transparency if i make them grayscale. Why? Here's my code: input = Image.open('input.png') output = ImageOps.grayscale(input) output.save('output.png', **input.info) ...
3
votes
2answers
847 views

How can I write text over an image, and overlay another image on it, in Python?

I need to put some text over a PNG image in Python, I need to put another image too over the first one. So I'll have a base image (the same for every image created), a logo to put over it in the ...
8
votes
1answer
2k views

Transparent PNG in PIL turns out not to be transparent

I have been hitting my head against the wall for a while with this, so maybe someone out there can help. I'm using PIL to open a PNG with transparent background and some random black scribbles, and ...
0
votes
1answer
383 views

Make PNG sprites in PIL but want to preserve alpha channel

I'm creating a script to grab a bunch of favicons, convert them to png and make a single sprite image out of all of them. The helpful g.etfv.co will detect and convert favicons in PNG format, and I'm ...
2
votes
3answers
1k views

Method for converting PNGs to premultiplied alpha

Looking for some kind of simple tool or process for Windows that will let me convert one or more standard PNGs to premultiplied alpha. Command line tools are ideal; I have easy access to PIL (Python ...
1
vote
1answer
269 views

Converting an NFO to PNG with Python and PIL

I'm trying to convert an NFO file with some crazy high ASCII arts using a Python script and PIL. Everything is nice when the NFO contains just simple characters, but with the "full rectangles" arts ...
3
votes
2answers
1k views

Converting PNG32 to PNG8 with PIL while preserving transparency

I would like to convert a PNG32 image (with transparency) to PNG8 with Python Image Library. So far I have succeeded converting to PNG8 with a solid background. Below is what I am doing: from PIL ...
1
vote
2answers
482 views

Encoding binary data in a PNG?

I'm looking for information on how to encode a small amount of binary data (say, around 200 bytes) into a PNG through colors; essentially what Hid.im does for .torrent files. Any information or ...
6
votes
2answers
2k views

Python: Converting GIF frames to PNG

I'm very new to python, trying to use it to split the frames of a GIF into PNG images. # Using this GIF: http://www.videogamesprites.net/FinalFantasy1/Party/Before/Fighter-Front.gif from PIL import ...
3
votes
2answers
5k views

Python PIL: how to make area transparent in PNG?

I've been using PIL to crop Images, now I also want to make certain rectangular areas transparent, say from PIL import Image im = Image.open("sample.png") transparent_area = (50,80,100,200) ... ...
4
votes
2answers
1k views

Python PIL - All areas of PNG with opacity > 0 have their opacity set to 1

Imagine a red circle with a black dropshadow that fades away on top of a fully transparent background. When I open and resave the image with PIL the background remains fully transparent but the ...
1
vote
1answer
3k views

Optimize .png images with PIL

All I need is to create a .png image with transparent background, draw some text in black on it and save it using img.save('target.png', option='optimize') It looks like PIL saves .png images in ...
3
votes
4answers
5k views

How to get alpha value of a PNG image with PIL?

How to detect if a PNG image has transparent alpha channel or not using PIL? img = Image.open('example.png', 'r') has_alpha = img.mode == 'RGBA' With above code we know whether a PNG image has ...
20
votes
2answers
3k views

PIL: Thumbnail and end up with a square image

Calling image = Image.open(data) image.thumbnail((36,36), Image.NEAREST) will maintain the aspect ratio. But I need to end up displaying the image like this: <img src="/media/image.png" ...
5
votes
2answers
3k views

PIL does not save transparency

from PIL import Image img = Image.open('1.png') img.save('2.png') The first image has a transparent background, but when I save it, the transparency is gone (background is white) What am I doing ...
4
votes
1answer
1k views

how to determine the transparent color index of ICO image with PIL?

Specifically, this is from an .ico file, so there is no "transparent" "info" attribute like you would get in a gif. The below example illustrates converting Yahoo!'s favicon to a png using the ...
2
votes
1answer
970 views

Problem in handle PNG by the PIL

from PIL import ImageFile as PILImageFile p = PILImageFile.Parser() #Parser the data for chunk in content.chunks(): p.feed(chunk) try: image = p.close() except IOError: ...