If it says "package" in the column, then it's stored as an OLE wrapper, rather than the raw bytes of the image.
Extracting images from OLE wrappers is somewhat complicated:
Convert Access image OLE Object into raw image byte array in C# - Stack Overflow[
^]
It would probably be easier to change the column type to
BLOB
, and insert the raw image bytes from code.