N
Nicholas Paldino [.NET/C# MVP]
D,
You aren't going to be able to access the representation of an image,
because only a small set of types are represented in the dataset. What is
really stored in the dataset is the serialized representation of a type.
The types that are exposed are the types that are frequently used. In the
case of the image, it is the binary representation.
You should be able to save the image to disk, or load the array into
memory and then use one of the static FromXXXX methods on the Image to get
an object representation of that image.
Hope this helps.
You aren't going to be able to access the representation of an image,
because only a small set of types are represented in the dataset. What is
really stored in the dataset is the serialized representation of a type.
The types that are exposed are the types that are frequently used. In the
case of the image, it is the binary representation.
You should be able to save the image to disk, or load the array into
memory and then use one of the static FromXXXX methods on the Image to get
an object representation of that image.
Hope this helps.