Write into PNG format

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
wizard29
Posts: 58
Joined: 2014-03-21T00:40:16-07:00
Authentication code: 6789
Location: Russia, Saint Petersburg
Contact:

Write into PNG format

Post 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?
User avatar
glennrp
Posts: 1147
Joined: 2006-04-01T08:16:32-07:00
Location: Maryland 39.26.30N 76.16.01W

Re: Write into PNG format

Post 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.
wizard29
Posts: 58
Joined: 2014-03-21T00:40:16-07:00
Authentication code: 6789
Location: Russia, Saint Petersburg
Contact:

Re: Write into PNG format

Post by wizard29 »

Thank you!
Post Reply