Hi,
Im uploading a transparent png to my webapp. Its creating a png-thumbnail through PerlMagick but the result is not interlaced.
although
1.) the uploaded png is interlaced
2.) I tried $resizedImg->set( interlace => $param) with $param = Line, Plain and Partition.
Any help is wellcome: Just trying to create interlaced png-thumbnails.
thx
Albert
interlaced pngs
Re: interlaced pngs
convert -strip -interlace JPEG -quality 80 origi.jpg output-file.jpg
origi image size : 40.6 kb
output-file image size : 11.3 kb
But if I convert one png file as
convert -strip -interlace PNG -quality 80 he.png output-file.png
he.png image size : 711 kb
output-file image size : 1 mb
convert -strip -interlace PNG he.png output-file.png
he.png image size : 711 kb
output-file image size : 972.3 kb
Why the file size has been increased in case of PNG after conversion to output-file.png?
Am I using correct parameters for png conversions?
origi image size : 40.6 kb
output-file image size : 11.3 kb
But if I convert one png file as
convert -strip -interlace PNG -quality 80 he.png output-file.png
he.png image size : 711 kb
output-file image size : 1 mb
convert -strip -interlace PNG he.png output-file.png
he.png image size : 711 kb
output-file image size : 972.3 kb
Why the file size has been increased in case of PNG after conversion to output-file.png?
Am I using correct parameters for png conversions?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: interlaced pngs
Interlacing will change the data used by the compression algorithm.
snibgo's IM pages: im.snibgo.com