May be below link will be helpful: http://bytescout.com/products/developer/misc/pdfimageextractorsdk.html
With Regards, Irfan Ahmad (Kashmir) On Tue, Jun 29, 2010 at 6:06 PM, shree <[email protected]> wrote: > hello all, > here I am extracting images from pdf file > I am getting data in bytes[] successfully; > but when I am trying to cast it in Image Object it throws exception > as > " Parameter is not valid " > > here is my code ... > > MemoryStream stream = new MemoryStream(bytes); > stream.Position = 0; > Image img = > Image.FromStream(stream,true,false);
