Magick++ feature request: PingImages()

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
rodlie
Posts: 23
Joined: 2018-12-13T01:41:06-07:00
Authentication code: 1152

Magick++ feature request: PingImages()

Post by rodlie »

Hi,

I would be great to have a PingImages() function in Magick++ that works like ReadImages().
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: Magick++ feature request: PingImages()

Post by dlemstra »

Could you open an issue in Github for this? And do you mean readImages instead of ReadImages.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
rodlie
Posts: 23
Joined: 2018-12-13T01:41:06-07:00
Authentication code: 1152

Re: Magick++ feature request: PingImages()

Post by rodlie »

Sure, I can open an issue on github.

Yes, readImages (https://www.imagemagick.org/Magick++/STL.html).

Code: Select all

std::list<Magick::Image> images;
Magick::readImages(&images, filename);

Code: Select all

std::list<Magick::Image> images;
Magick::pingImages(&images, filename);
Post Reply