J Jon Skeet [C# MVP] Jun 9, 2004 #2 david said: As Title. Thanks in advance. Click to expand... Use the inherited Image.Save method and save it to a MemoryStream which you can then call ToArray on.
david said: As Title. Thanks in advance. Click to expand... Use the inherited Image.Save method and save it to a MemoryStream which you can then call ToArray on.
C cody Jun 10, 2004 #3 You can query the BitmapData which has a pointer in it. This requrires unsafe code, but you can access the bitmap bits directly.
You can query the BitmapData which has a pointer in it. This requrires unsafe code, but you can access the bitmap bits directly.
D david Jun 10, 2004 #4 Thanks a lot. cody said: You can query the BitmapData which has a pointer in it. This requrires unsafe code, but you can access the bitmap bits directly. -- cody Freeware Tools, Games and Humour http://www.deutronium.de.vu || http://www.deutronium.tk Click to expand...
Thanks a lot. cody said: You can query the BitmapData which has a pointer in it. This requrires unsafe code, but you can access the bitmap bits directly. -- cody Freeware Tools, Games and Humour http://www.deutronium.de.vu || http://www.deutronium.tk Click to expand...