Hello everybody,
I am using the latest version of ImageMagick with MagickNET and Ghostscript for a .NET project in C#.
I am trying to create an Enumerator to parse a multi-page PDF document and export each page to jpg.
I use the following code:
Code:
ImageMagickNET.ImageList imgList = new ImageMagickNET.ImageList();
imgList.ReadImages(Server.MapPath(filename));
ImageMagickNET.ImageListEnumerator imgArray = new ImageMagickNET.ImageListEnumerator(imgList);
and I get the following error:
CS1502: The best overloaded method match for 'ImageMagickNET.ImageListEnumerator.ImageListEnume rator(std.list<Magick::Image,std::allocator<Magick ::Image> >*)' has some invalid arguments
Does anyone know what "std.list<Magick::Image,std::allocator<Magick::Ima ge> >*" is?