Hi All. I wish to use the ImageCovert.dll to format a GIF into a PDF file. Any help on telling me what the OutPutFormat command is for ConvertImage method would be appreciated.
This is what i have so far.
' Save to memory using the Gif format
NewBitmap.Save(ms, ImageFormat.Gif)
'Save the file temporarily for conversion
SaveMemoryStream(ms, GIFTempLocation & "\" & strNow & ".Gif")
'convert image to PDF file file
objV.ConvertImage("Some OutPutFormat Here!!!", GIFTempLocation & "\" & strNow & ".Gif", GIFTempLocation & "\" & strNow & ".pdf")
Dont know the type into insert here ...
Thank you.