Hi. I'm trying to convert a rgba to png file. While there is no image size information into the rbga file, I have to give the information to convert. I know my image resolution. it is a 256*256 images my rgba image file size is exactly (256 *256 * 4 bytes) I've tryed convert -size 256x256 img.rgba ...
Hi. I've tryed to reduce the color number of this image http://www.webshaker.net/apple.png I used this command Convert apple.png -ordered-dither o8x8,32,64,32 apple-bayer.png And finally I obtained this picture http://www.webshaker.net/apple-bayer.png It seem's that there is a saturate problem ...
Hi. I'd like to reduce a png to a RGB565 bitmap. I do not find how to do that so, I decided to reduce it with a -color parameter to RGB555 convert src.png -depth 5 dst.png But the quality was not very good, so I tried to add a Floyd dithering convert src.png -depth 5 -dither FloydSteinberg dst.png ...
Thank you for your reply. Yes actually, I convert my png to gif and then convert to png again, but it was very long, and the quality was some time not very good due to gif conversion ! So I'll try your command. For my remark, you can have pixel that have alpha value to 0, but R, G and B components ...
How can I modify the alpha of a png file in order to put if (alpha < 128) alpha = 0 else alpha =255 in order to keep transparency but not alpha ? Thank's By the way, to improve compression algorithme, is it possible to put pixel fully transparent pixel to (0, 0, 0, 0) ? I've remark that RGB ...
Hi. I'm looking to add a watermark but kipping the alpha of the bitmap. I'm currently use this command composite -dissolve 50% -gravity SouthEast watermark.png airship.png airship1.png It give me this result. http://www.webshaker.net/airship1.png But what I'd like to have is http://www.webshaker.net ...
Hi I try to resize a big jpeg image to make a thumb.... the original picture is this one http://scrapblog.chez-les-filles.com/rpc/getImage.php?idi=54.a5e682 the thumb is there http://scrapblog.chez-les-filles.com/rpc/getThumb.php?idi=54.a5e682 the command I use is the next one convert -quality 85 ...
Hi I try to resize a big jpeg image to make a thumb.... the original picture is this one http://scrapblog.chez-les-filles.com/rpc/getImage.php?idi=54.a5e682 the thumb is there http://scrapblog.chez-les-filles.com/rpc/getThumb.php?idi=54.a5e682 the command I use is the next one convert -quality 85 ...
Well. I've post a message few days oge, but finally it doen't really explain what I need. I have a jpeg image like this http://www.webshaker.net/imagemagick/src.jpg I have a gif mask image http://www.webshaker.net/imagemagick/black-mask.gif or this one http://www.webshaker.net/imagemagick/white-mask ...