I'm getting this weird error message:
HRESULT: 0X800A7EFD
This error comes up occassionally when trying to convert TIF images to PNG images. Here's my code (in VB.NET):
ImageManCtrl.Picture = tifFiles(fileNum) ' This is an array of file names.
ImageManCtrl.IncreaseTo(8)
ImageManAtts.Add("EXTENSION", "PNG", tagDataType.IMString)
ImageManAtts.Add("PNG_COMPRESS", 9, tagDataType.IMInt8)
ImageManAtts.Add("COLORTYPE", 2, tagDataType.IMInt8)
ImageManCtrl.SaveAs(newFile, ImageManAtts)
Any ideas?