将两张图像合并为一张新图像
我有两个尺寸不同的 JPEG 文件:
Image1 (Width1,Height1)
Image2 (Width2,Height2)
我想创建 Image3 (Width3, Height3),其中 Image1 在左侧,Image2 在右侧。
I have two JPEG files with different dimensions:
Image1 (Width1,Height1)
Image2 (Width2,Height2)
I want to create Image3 (Width3, Height3) with Image1 on the left side and Image2 on the right.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西会给你一个新图像,其中两个原始图像并排。
Something like this will give you a new image with the two original images side by side.
我有类似的问题。
使用此功能,您可以将多个位图合并为单个图像
I had a similar problem.
With this function you can merge multiple Bitmap's into a single image
using System.Drawing;
使用系统.绘图.成像;
//控制器
using System.Drawing;
using System.Drawing.Imaging;
//controller