-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cannot write mode RGBA as JPEG (4.2.0) #2609
Comments
JPEGs can't represent an alpha channel. It's been issuing a warning for a while, removed in this release. |
Thanks @wiredfool ! What is preferred way to make it works with both PNG and JPEG files? |
If it's got an alpha channel that you want to preserve, PNG is really the only reasonable choice. Alternately you can flatten it to a |
Hi, i am interrested did you find a way to make it works with both PNG and JPEG ? |
@AymericHENRY Hi. While this is just reiterating what has already been said, you should have no problem saving an image in RGBA mode to PNG. To save an image in RGBA mode as JPEG means getting rid of the alpha channel, because JPEG doesn't transparency. So, if you have an image in RGBA mode, then converting it to RGB will let you save it as JPEG. >>> from PIL import Image
>>> im = Image.new("RGBA",(100,100))
>>> im.save("test.jpg")
>>> Traceback (most recent call last):
File "PIL/JpegImagePlugin.py", line 602, in _save
KeyError: 'RGBA'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "PIL/Image.py", line 1893, in save
File "PIL/JpegImagePlugin.py", line 604, in _save
OSError: cannot write mode RGBA as JPEG
>>> im = im.convert("RGB")
>>> im.save("test.jpg")
>>> |
In most cases the discarding the alpha channel will give you undesirable result, because transparent pixels also have some unpredictable colors. It is much better to fill transparent pixels with certain color: fill_color = '' # your background
image = Image.open(file_path)
if image.mode in ('RGBA', 'LA'):
background = Image.new(image.mode[:-1], image.size, fill_color)
background.paste(image, image.split()[-1])
image = background
im.save(hidpi_path, file_type, quality=95) |
See python-pillow/Pillow#2609 Using solution proposed by @homm to make sure alpha channel is stripped from PNGs before conversion to JPGs.
* adding a quality option Signed-off-by: ananyajana <[email protected]> * removing the unnecessary check-ins Signed-off-by: ananyajana <[email protected]> * removing the unnecessary check-ins Signed-off-by: ananyajana <[email protected]> * minor changes: reframing the sentences Signed-off-by: ananyajana <[email protected]> * addressing review comments Signed-off-by: ananyajana <[email protected]> * addressing code review comments 2 Signed-off-by: ananyajana <[email protected]> * addressing code review comments 3 Signed-off-by: ananyajana <[email protected]> * addressing code review comments 4 Signed-off-by: ananyajana <[email protected]> * Update features * Add Python 3.6 support * Fix issue "cannot write mode RGBA as JPEG" See python-pillow/Pillow#2609 Using solution proposed by @homm to make sure alpha channel is stripped from PNGs before conversion to JPGs.
The novice module, removed in 0.14.x, runs into this error: python-pillow/Pillow#2609
* In matplotlib saving a histogram to a JPG file used to work * Pillow deprecated the ability to save RGBA images as JPG since JPG doesn't support an alpha channel * Now saving the histograms as PNG instead to bypass the issue * Source python-pillow/Pillow#2609
… channel This was deprecated in 4.2.0 https://github.com/python-pillow/Pillow/blob/master/docs/releasenotes/4.2.0.rst#removed-deprecated-items and as we upgrade to 5.2.0, we need to take care of this case. see the discussion in python-pillow/Pillow#2609
Partially related: python-pillow/Pillow#2609 I tried to refactor this, but can probably just simplify it a bunch
Partially related: python-pillow/Pillow#2609 I tried to refactor this, but can probably just simplify it a bunch
When png images have an alpha layer, they can retain them in RGBA mode. This causes img.save(..., "JPEG") to fail with IOError("cannot write mode RGBA as JPEG"). This commit layers RGBA images on top of a black background before removing the alpha channel and converting to RGB. Example image that used to fail: https://i.redd.it/gnro5oykh1821.png Issue in Pillow: python-pillow/Pillow#2609 StackOverflow solution: http://stackoverflow.com/a/9459208/284318
This reverts commit 386dcc1. See python-pillow/Pillow#2609 for details
meshgrid is in numpy now. PIL now correctly refuses to store an RGBA as JPEG, see python-pillow/Pillow#2609.
* restore ipynbplotutils.py * fix ipynbplotutils.Plot3D meshgrid is in numpy now. PIL now correctly refuses to store an RGBA as JPEG, see python-pillow/Pillow#2609. * control background color * disable depth test Disabled for correct transparency. * decrease material opacity
What did you do?
Tried to save JPG file (any JPG file).
What did you expect to happen?
Saving without any exceptions (was working in 4.1.1 version)
What actually happened?
File /usr/lib/python3.6/site-packages/PIL/Image.py, line 1893, in save
save_handler(self, fp, filename)
File /usr/lib/python3.6/site-packages/PIL/JpegImagePlugin.py, line 604, in _save
raise IOError(cannot write mode %s as JPEG % im.mode)
OSError: cannot write mode RGBA as JPEG
What versions of Pillow and Python are you using?
4.2.0 (with 4.1.1 works properly) / Python 3.6
Please include code that reproduces the issue and whenever possible, an image that demonstrates the issue. Please upload images to GitHub, not to third-party file hosting sites. If necessary, add the image to a zip or tar archive.
The best reproductions are self-contained scripts with minimal dependencies. If you are using a framework such as plone, Django, or buildout, try to replicate the issue just using Pillow.
The text was updated successfully, but these errors were encountered: