0 Pluspunkte 0 Minuspunkte
Wie kann ich am einfachsten ein Bild (png) auf die Canvas eines Form zeichnen?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit einem image

Image newImage = Image.FromFile("SampImag.jpg");

float x = 100.0F;
float y = 100.0F;
float width = 450.0F;
float height = 150.0F;

e.Graphics.DrawImage(newImage, x, y, width, height);

von