- C# / .NET : Charger les images au format tga en c# - CodeS SourceS
- Chargement d'images au format FITS
- Flash : Solution a la contrainte du format unique en chargement d'image (le jpg "non progressi
- Charger des images d'internet en masse
- Delphi / Pascal : Charger une image jpeg depuis une ressource - CodeS SourceS
18 nov. 2003 à 20:54
a peu pres comme :
Image img = Image.FromFile(chemin);
sinon ... je sais pas
18 nov. 2003 à 19:21
Bitmap bmp = new Bitmap(this.GetType(),"copy.gif");
Color bakColor = bmp.GetPixel(1,1);
bmp.MakeTransparent();
pictureBox1.Image = bmp;
En enlevant la ligne MakeTransparent, ça marche, mais quand ele y est, picturebox affiche qu'une seule frame, puis sa bloque.