I am having a problem using the PrintImage function of the ActivePDF C# library. When I use it to try to place a .gif image on the PDF I receive this error message: "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." I am able to use the PrintJPEG and PrintTIFF image functions without any problem. Has anyone run into this problem before?
|
feedback
|
|
Is that image coming from a picturebox or similar control? If that's the case, then that control has a lock on that image (I ran into the same situation while trying to serialize an object that contained an image from an inkpicture control). You would need to copy the image before placing it in your pdf document. | |||||
feedback
|