Share your opinion
WIDGETS GAMBAS
GAMBAS 3 SOFTWARES
TUTORIALS
Library
|
Use picture - Invert,flip,rotate
French only sorry...
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 Creation date : 11/10/2009 @ 14:47 Reactions to this article
| QUICK MENU
SEARCH
LANGUAGE
COMPONENTS
Other
LANGUAGE
Where, who?
VISITS
visitors visitors online ARCHIVES GAMBAS 1/2
|