The following code example demonstrates the use of the
Note |
---|
GDI+ is included with WindowsВ XP and is available as a redistributable for WindowsВ NT 4.0 SP 6, WindowsВ 2000, WindowsВ 98, and Windows Millennium Edition. To download the latest redistributable, see |
Example
В | Copy Code |
---|---|
#using <system.drawing.dll> using namespace System; using namespace System::Drawing; int main() { Image^ image = Image::FromFile("SampleImage.jpg"); image->RotateFlip( RotateFlipType::Rotate90FlipNone ); image->Save("SampleImage_rotated.jpg"); return 0; } |