Page 1 of 1

interlaced pngs

Posted: 2007-01-11T03:15:33-07:00
by albertleidinger
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

Posted: 2007-02-01T13:02:46-07:00
by glennrp
Use "plane" not "plain" for interlacing.

Glenn

Posted: 2007-02-02T05:51:22-07:00
by albertleidinger
Oh my god ...

thx - the simpler the error the harder to find.

Albert

Re: interlaced pngs

Posted: 2016-09-10T04:27:25-07:00
by Vanns
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?

Re: interlaced pngs

Posted: 2016-09-10T05:03:25-07:00
by snibgo
Interlacing will change the data used by the compression algorithm.