c#如何把图片框控件的图片裁剪并保存新的图片,或者在另一个图片控件中显示。

如何实现缩放后图片的中心仍和pictureBox控件的中心重合?

第1个回答  2012-04-03
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;

/// <summary>
/// 裁剪图片
/// </summary>
/// <param name="x">相对于图片左上角(0,0)点,x方向的位移</param>
/// <param name="y">相对于图片左上角(0,0)点,y方向的位移</param>
/// <param name="width">裁剪后的图片宽度</param>
/// <param name="height">裁剪后的图片高度</param>
private void CloneImage(float x, float y, float width, float height)
{
if (this.openFileDialog1.ShowDialog() == DialogResult.OK)
{
//获取图像
Bitmap myBitmap = new Bitmap(this.openFileDialog1.FileName);
//设定图像剪切区域
RectangleF cloneRect = new RectangleF(x, y, width, height);
PixelFormat format = myBitmap.PixelFormat;
Bitmap cloneBitmap = myBitmap.Clone(cloneRect, format);

this.pictureBox1.Image = cloneBitmap;

}

}
private void button1_Click(object sender, EventArgs e)
{
//测试
CloneImage(0, 0, 500, 200);
}追问

谢谢你。测试了一下可以。还想请教你如何实现图片缩放功能,然后再剪切。(发现pictureBox的SizeMode属性必须设置成custom才能实现剪切)。后面给你加分勒,嘿嘿...

追答

下面是图片缩放功能代码,你可试一下。
///
/// 将某个图像生成指定尺寸的图像缩放图
///
/// 原图像
/// 新的图像宽
/// 新的图像高
///
private Image GetThumbnailImage(Bitmap myBitmap, int width, int height)
{

//生成图像的缩放图
Image.GetThumbnailImageAbort myCallback =
new Image.GetThumbnailImageAbort(ThumbnailCallback);

Image myThumbnail = myBitmap.GetThumbnailImage(
width, height, myCallback, IntPtr.Zero);
//this.pictureBox1.Image = myThumbnail;

return myThumbnail;
}
public bool ThumbnailCallback()
{
return false;
}

追问

嗯 谢谢您。测试了可以,再咨询最后一个问题哈。这个程序缩放后的图片位置是以pictureBox控件左上角为原点,不知如何实现缩放后图片的中心仍和pictureBox控件的中心重合,这样更美观一些?

追答

有两种方法,如下所示:
//获取图像
Bitmap myBitmap = new Bitmap(this.openFileDialog1.FileName);
myBitmap = (Bitmap)GetThumbnailImage(myBitmap, 100, 100);
//可以这样
//ShowCenterImage(this.pictureBox1, myBitmap);
//也可以这样
this.pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
this.pictureBox1.Image = myBitmap;

//测试代码所下:
private void button5_Click(object sender, EventArgs e)
{
if (this.openFileDialog1.ShowDialog() == DialogResult.OK)
{
//获取图像
Bitmap myBitmap = new Bitmap(this.openFileDialog1.FileName);

myBitmap = (Bitmap)GetThumbnailImage(myBitmap, 100, 100);

//可以这样
//ShowCenterImage(this.pictureBox1, myBitmap);

//也可以这样
this.pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
this.pictureBox1.Image = myBitmap;
}
}

///
/// 将图片显示在picturebox中心
///
///
///
private void ShowCenterImage(PictureBox myPictureBox, Image myImage)
{

Graphics g = myPictureBox.CreateGraphics();
g.Clear(Color.White);
//消除锯齿
g.SmoothingMode = SmoothingMode.AntiAlias;
//高质量,低速度绘制
g.CompositingQuality = CompositingQuality.HighQuality;

int x = (myPictureBox.Width - myImage.Width) / 2;
int y = (myPictureBox.Height - myImage.Height) / 2;

g.DrawImage(myImage, new Point(x, y));

}

本回答被提问者采纳

c#如何把图片框控件的图片裁剪并保存新的图片,或者在另一个图片控件中...
\/\/\/ 裁剪后的图片高度 private void CloneImage(float x, float y, float width, float height){ if (this.openFileDialog1.ShowDialog() == DialogResult.OK){ \/\/获取图像 Bitmap myBitmap = new Bitmap(this.openFileDialog1.FileName);\/\/设定图像剪切区域 RectangleF cloneRect = new Rectang...

c#里面如何可以实现把一个图片控件里面的图片显示到另一个图片控件
讲一个控件内的图片{pictureBox1},显示到另一个控件内(pictureBox2),采用下面的语句:pictureBox2.Image = pictureBox1.Image; \/\/复制图片 pictureBox1.Image = NULL; \/\/清空控件

C#中能将Picturebox中的图片提取出来吗?
打开Windows的画图软件,新建一图片空白文件,把白色背景放大,以利于后来裁剪。运行程序显示图片,尽量让程序显示在白色背景上,按键PrintScreen,整个屏幕就复制到剪贴板。关闭程序,把剪贴板的图粘贴到空白文件,裁剪所需部分,裁剪的部分自动保存到剪贴板,再新建空白图形文件,将裁减好的图片从剪贴板粘贴过...

C#如何直接保存图片框内已编辑好的图片?
Image和Bitmap这两个类有保存函数的。Bitmap bmp = new Bitmap(picBox1.Image); \/\/保存到磁盘文件 bmp.Save(@"D\\\\:1.png", Image.Format.JPEG);大概就是这样

在C#.net中,怎么在一张图片上显示另一张图片
在一张图片上显示另一张图片?这个不太好办 还是说你是想用代码直接更换背景吗?this.pictureBox1.BackgroundImage = Image.FromFile("填你的路径");这样就可以了···比如你那个就这样 this.pictureBox1.BackgroundImage = Image.FromFile(@"E:\\图片\\070.jpg");如果你是想说两个图片直接重叠...

如何在C#中使用PictureBox控制图片集的上一张和下一张?
关键的代码环节在于控制图片的切换。想象一下,一个简单的变量扮演着索引的角色,用于追踪当前显示的图片位置。在"上一张"和"下一张"按钮的点击事件中,编写这样的函数:private void navigate_images(){ int i = 图片集的名字.images.length; \/\/ 获取当前图片索引 图片框的名字.image = 图片集的...

C#中如何一个picturebox控件放多张图片
1. 借助timer控件,当点击按钮的时候激活timer事件,然后在timer事件里面组织显示图片就可以了。图片呢,可以把名字存入一个数组,在timer的滴答事件中循环调用,每触发一次数组就移动一个索引,直到最后一个为止。2 . 对于多线程的话,实现这种功能用多线程就是大材小用。不过也可以,可以把显示图片的...

怎样用c#将picturebox中的图片保存到指定文件夹中,是纯c#不是.net
1.C#与.NET是不同的概念,.NET是微软提供的托管代码的公共框架,C#是运行于其上的一种高级语言。2.保存图片代码 \/\/取得PictureBox中的图片对象 Image imgSave = picturebox1.Image;\/\/保存到本地,路径可自行设置 imgSave.Save("D:\\\\Image\\\\mypic.jpg");...

c#中如何实现button控件的背景图片循环切换
winfrom的话 用imagebutton 控件 在加个timer控件 点击事件里面触发timer timer里面写上imagebutton的图片路径 用个if判断即可切换图片 web的话 用js实现 代码网上找

C# ASP.NET image 控件中的图片如何替换
protected void LinkButton2_Click(object sender, EventArgs e){ if (Image1.ImageUrl == "~\/images\/1.jpg"){ Image1.ImageUrl = "~\/images\/2.jpg";} else if (Image1.ImageUrl == "~\/images\/2.jpg"){ Image1.ImageUrl = "~\/images\/3.jpg";} else if (Image1.ImageUrl == "...

相似回答