Distorting Image

snarfblam

Mega-Ultra Chicken
Joined
Jun 10, 2003
Messages
1,832
Location
USA
User Rank
*Expert*
Is there a way to distort an image using GDI+? Version 1.1 of the .Net Framework hasnt implemented DrawImage(Image, Point()) for four points. That is, you can specify three points to define a parallelogram that skews the image, but if you specify four points for full distortification you receive a NotImplemented exeption... Is there another means of distorting an image beyond skewing?
 
Distort? Well, there are the Graphics.TranslateTransform, .ScaleTransform, and .RotateTransform, which you can use to move, resize, or rotate the next drawings.

Theres also the Matrix which you can use for some transforms as well. :)
 
Back
Top