请问现在有两个picturebox1和picturebox2中各有一张图片,请问怎么通过点击一个button 按钮 实现将两张图片上下拼接在picturebox3中
1条回答 默认 最新
- threenewbee 2020-04-11 23:21关注
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Q1063079 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Bitmap bmp = new Bitmap(pictureBox1.Image.Width + pictureBox1.Image.Width, pictureBox1.Image.Height > pictureBox2.Image.Height ? pictureBox1.Image.Height : pictureBox2.Image.Height); Graphics g = Graphics.FromImage(bmp); g.DrawImage(pictureBox1.Image, 0, 0); g.DrawImage(pictureBox2.Image, pictureBox1.Image.Width, 0); pictureBox3.Image = bmp; } } }
问题解决的话,请点采纳
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
- ¥50 STM32单片机传感器读取错误
- ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
- ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
- ¥50 sft下载大文阻塞卡死
- ¥15 机器人轨迹规划相关问题
- ¥15 word样式右侧翻页键消失
- ¥15 springboot+vue 集成keycloak sso到阿里云
- ¥15 win7系统进入桌面过一秒后突然黑屏
- ¥30 backtrader对于期货交易的现金和资产计算的问题