Hi
I created one png-8 image with fireworks with alpha transparency .As i check about 160 colors in my palette have alpha channel 0<alpha<255 .The rest have alpha=255 .So far so good. Now i want to keep that palette and make a file BMP-8 Paletted and rle compressed.
Is this possible ?. If so what is the syntax ?.As i understand it's not standard to bmp format .Is there another image format without heavy compression i could use ?.
Thank's for any help you can provide !!!.
Help needed for PNG-8 to bmp with alpha
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Help needed for PNG-8 to bmp with alpha
Why do you want a BMP file with alpha in the palette? Microsoft documentation is contradictory about whether this is allowed, so I expect some software will ignore the alpha. (See https://en.wikipedia.org/wiki/BMP_file_format )
I don't think IM can make BMP files with alpha in the palette.
I don't think IM can make BMP files with alpha in the palette.
I suggest PNG if your image is a graphic, or TIFF (with Zip or LZW compression) if your image is a photo.mixkef wrote:Is there another image format without heavy compression i could use ?
snibgo's IM pages: im.snibgo.com
Re: Help needed for PNG-8 to bmp with alpha
Hi,
Thank's for your reply.I have an embedded device that displays a number over a image backgound . Numbers don't show nice without Alpha (old story ).
On the other side i want <24 ms response time in drawing a number 160x280 pixels which is impossible for my mcu to handle with any type of PNG or even GIF compression .
So it seems i have to write one converter to do that . I saw so much potential in ImageMagick so i though somebody must have done it already.
Thank's for your reply.I have an embedded device that displays a number over a image backgound . Numbers don't show nice without Alpha (old story ).
On the other side i want <24 ms response time in drawing a number 160x280 pixels which is impossible for my mcu to handle with any type of PNG or even GIF compression .
So it seems i have to write one converter to do that . I saw so much potential in ImageMagick so i though somebody must have done it already.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Help needed for PNG-8 to bmp with alpha
Do you need compression? If speed is critical, don't compress.
snibgo's IM pages: im.snibgo.com