Converting 8 bit PNG to 32- bit with alpha
Asked Answered
C

3

7

I have an Image: PNG image data, 403 x 343, 8-bit colormap, non-interlaced. I want to convert this into Google Play Icon size: 32-bit with alpha.

How can I do it?

Cressy answered 6/4, 2016 at 21:16 Comment(0)
C
11

Fixed it using https://pixlr.com/editor/. Just open and save the image with full quality.

Cressy answered 6/4, 2016 at 21:27 Comment(2)
Not working. It saves it again with 8-bit colormap, non-interlaced. Any other solution? Need to publish app on playstoreColporteur
It may work but do I really want flash to access my harddrive?Thompson
D
5

With imagemagick: convert <file> png32:<newfilename>.png

With Gimp: open, add alpha channel (Layer > Transparency > Add alpha channel), set RGB mode (Image > Mode > RGB) and export as png.

Diglot answered 13/9, 2018 at 12:9 Comment(2)
Worked just fine.Iambus
After doing this with gimp 2.10.30 I see the .png file only has 16 bits per pixel, not 32.Midkiff
T
2

Gimp -> export as -> png -> choose 16bpc RGBA

Thompson answered 31/10, 2019 at 13:42 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.