Türkçe   |   English
Calendar
Categories
Archive
Links
Blogroll
Files

04.03.2008
Image - RotateFlip

You can call the RotateFlip method of the Image object in order to rotate your images 90, 180 and 270 degrees in your applications. The RotateFlip method takes RotateFlipType enum as parameter. In these enums, you can call the ones with 'Flip' if you want to rotate them on X or Y axises:
 private void Form1_Load(object sender, EventArgs e)
        {
            Image img = Image.FromFile(@"C:\a.jpg");
            img.RotateFlip(RotateFlipType.Rotate90FlipX);
            pictureBox1.Image = img;
        }

 

Code
Comments(0)

02.03.2008
WorldWide Telescope
Microsoft created a virtual telescope application by blending the images acquired from the telescopes on both earth and space with the Visual Experience Engine™ technology. The application is named WorldWide Telescope and will be available for use this Spring. Thanks to WWT, we will be able to use our computers like a telescope and we will be able to view planets, stars and approach them. In WWT website, it's also emphasized that it will be a cutting edge resource in astronomy education. In order to have detailed information on WorldWide Telescope, you can visit the FAQ section in http://www.worldwidetelescope.org/.
News
Comments(0)

Photos

Lighthouse
Show All
Entries
News
Articles