本文介绍了如何将一张图片放在另一张上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在一个picturebox1中有一个image1,在另一个picturebox2中有另一个image2,我想将来自picturebox2的image2放在picturebox1中的image1上.我正在使用C#语言.

请任何人在这方面帮助我.如果提供的代码,我将非常感激.

i am having an image1 in a picturebox1 and another image2 on another picturebox2, i want to put image2 from picturebox2 on image1 in picturebox1.
i am using c# language.

plz any one help me in this regard.if code provided i will be greatly thankful

推荐答案

using (Graphic g = Graphics.FromImage(myTargetPictureBox.Image))
   {
   g.DrawImage(mySourcePictureBox.Image, new Point(100,100));
   }


这篇关于如何将一张图片放在另一张上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-18 19:15