MANIPULATION D'IMAGES
Tournez votre image à 90°
Dans un sens:
DIM img AS Image
DIM monimage As String
'Sélectionnez votre image
img = Image.Load(monimage)
img = img.Rotate(1.57079633)
img.Save(monimage)
'Visionner dans une picturebox
PictureBox1.Picture = ""
PictureBox1.Refresh
PictureBox1.Picture = Picture.Load(monimage)
Dans l'autre sens:
DIM img AS Image
DIM monimage As String
'Sélectionnez votre image
img = Image.Load(monimage)
img = img.Rotate(4.71238898)
img.Save(monimage)
'Visionner dans une picturebox
PictureBox1.Picture = ""
PictureBox1.Refresh
PictureBox1.Picture = Picture.Load(monimage)
Inverser l'image:
img = img.Flip()
'à la place de img.Rotate()
Image en miroir:
img = img.Mirror()
Réalisé par taoteblues