Page 1 of 1

Write into PNG format

Posted: 2014-11-25T07:22:01-07:00
by wizard29
Hi, everybody.

I try to save an image into different file formats and show progress of the operation.
When I try to save an image into the PNG file format I cann't show the progress. The progress monitor handler is called the once for the PNG.

I use Magick++ and MagicCore interfaces.

It looks like a bug.
How to avoid this problem?

Re: Write into PNG format

Posted: 2014-11-25T08:47:31-07:00
by glennrp
The progress monitor is called once per pass when writing a PNG. If you're writing non-interlaced PNG files, then there is only one pass.
I've updated the SVN repository, revision 17100, to make it report once per row instead of once per pass.

Re: Write into PNG format

Posted: 2014-11-25T08:58:22-07:00
by wizard29
Thank you!