WIDGETS GAMBAS
LOGICIELS GAMBAS 3
TUTORIELS
VISITES
Où ça, qui ça?
|
Manipuler les images - Inversion, miroir, rotation
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 Date de création : 11/10/2009 @ 14:47 ![]()
| ACCES RAPIDE
RECHERCHE
LOGICIELS GAMBAS 2
LES INSTRUCTIONS
LES COMPOSANTS
Divers
|