• How to rotate image 90 degrees in Visual Basic 2013

    Ganesh Member

    How to rotate image 90 degrees in Visual Basic 2013

  • Adan Member

    Once you have the image in a Bitmap object, simply use its RotateFlip method. Here is one example:

    Dim yourImage As New Bitmap("C:\img\codewithc.jpg")
    yourImage.RotateFlip(RotateFlipType.Rotate90FlipNone)
    yourImage.Save("C:\img\codewithc.jpg")
    
Viewing 1 reply thread
  • You must be logged in to reply to this topic.
en_USEnglish