博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bitmap Image Graphics
阅读量:5840 次
发布时间:2019-06-18

本文共 349 字,大约阅读时间需要 1 分钟。

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);
}

转载于:https://www.cnblogs.com/DTWolf/p/4660979.html

你可能感兴趣的文章
Java多线程之JUC原子类AtomicLong
查看>>
一个简单的弹性返回顶部JS代码实现介绍
查看>>
自动化代码上线
查看>>
[shell] if else以及大于、小于、等于逻辑表达式
查看>>
BGP Improvement Methods
查看>>
TCP/IP四层模型和OSI七层模型对应表
查看>>
AD子域的部署并配置DNS委派的几种方法
查看>>
shell脚本 fdisk 分区
查看>>
Python标准库--Scope
查看>>
CentOS启动流程
查看>>
MMC/SD 分析
查看>>
每天学习2小时的故事
查看>>
asa-url-filter
查看>>
iOS入门培训还要钱?看博客,看视频都拿下
查看>>
mysql:error: 'Access denied for user 'root'@'localhost' (using password: YES)
查看>>
rsync 不能复制数据
查看>>
Workspace in use or cannot be created, choose a different one.
查看>>
linux下mongodb的安装
查看>>
分页查询
查看>>
安卓网络编程
查看>>