View Single Post
  #43 (permalink)  
Old 12-18-2007, 04:12 PM
leotsem leotsem is offline
D-Web Trainee
 
Join Date: Dec 2007
Posts: 1
leotsem is on a distinguished road
Default Re: ImageMagick MagickNet C# WebApplication

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?
Reply With Quote