码迷,mamicode.com
首页 > 其他好文 > 详细

Bitmap Image Graphics

时间:2015-07-20 12:53:55      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:

Bitmap Image  Graphics

private void DrawImagePointF(PaintEventArgs e)
{

    // Create image.
    Image newImage = Image.FromFile("SampImag.jpg");

    // Create point for upper-left corner of image.
    PointF ulCorner = new PointF(100.0F, 100.0F);

    // Draw image to screen.
    e.Graphics.DrawImage(newImage, ulCorner);
}

Bitmap Image Graphics

标签:

原文地址:http://www.cnblogs.com/DTWolf/p/4660979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!