The Blob object stores the binary data representing an image in memory.
Blob();
Blob(Blob blob);
Blob(Byte[] arry);
Blob(void* unmanagedData, size_t length);
blob: An existing MagickNet.Blob object. (copy constructor)
arry: Blob data in a managed array.
unmanagedData: Blob data in a sequential block of unmanged memory.
length: The size of the unmanaged block of memory.