Bitmap rotation CF2.0

  • Thread starter Thread starter Fabien
  • Start date Start date
F

Fabien

Hi,

I want to make a rotation of a BitMap image with Compact Framework 2.0.
I succeeded in making the transformation pixel by pixel but it is very
slow. I read on the Internet there was in the CF 2.0 a new function
should allow this Bitmap transformation, but I don't find it and I
don't find any information above.
Does somebody knows it or knows how making a rotation of Bitmap?
(except pixel by pixel)

BR

Fabien Decret
Windows Embedded consultant

ADENEO (ADESET)
http://www.adeneo.adetelgroup.com/
 
The CF v2 provides direct access to the bitmap bits through the
Bitmap.LockBits method, so you can try to apply your transformations to be
much faster.
 
Back
Top