Hi,
C# Code :
GdPictureImaging ObjImaging = new GdPictureImaging();
byte[] RedactionByteArray = null;
int bytesread = 0;
int ImageID = GdViewer1.CurrentPage;
ObjImaging.SaveAsByteArray(ImageID, ref RedactionByteArray, ref bytesread, DocumentFormat.DocumentFormatIFF, 4);
whenever i call the GdPictureImaging SaveAsByteArray() method, randomly i am getting the following error
Buffer cannot be null.
Parameter name: buffer
How can i fix that error?
