Can someone help me?
I need to be able to read a BLOB in c# of an image from Oracle, created in Access.
This image is stored in an Access form using Ctrl+V, so I think the file type is OLE.
I have tried several ways to read this image, using Paint, GIMP, and even Word (I tried adding the object to the text), but so far I have not been successful.
In C#, I have tried opening Image.FromStream, but I always receive the error System.ArgumentException: 'Parameter is not valid.'
Note: I downloaded the binary through Oracle SQL Developer by clicking on the blob and then on Download. I don't know if it's the best way, it's my first time working with Oracle.
I also tried the code of this topic but didn't worked Convert Access image OLE Object into raw image byte array in C#
Does anyone have any tips on how to read this type of image?
Thank you very much!