如何在选择图像的某个区域时裁剪图像
Posted
技术标签:
【中文标题】如何在选择图像的某个区域时裁剪图像【英文标题】:How to crop image on selecting certain area of it 【发布时间】:2011-07-06 13:17:17 【问题描述】:我想通过将图像拖动到图像上来选择图像的某个区域来裁剪图像。
【问题讨论】:
嗯..好吗?如果没有问题,或者您至少尝试过某事,我们无法为您提供帮助。我们不是代码猴子,也不是读心者。 【参考方案1】:我希望这会有所帮助,它是一个 jquery 插件http://deepliquid.com/projects/Jcrop/demos.php?demo=handler,它可以帮助您获取作物区域的坐标。当你得到这些坐标时,你可以使用 c#中的以下函数。
Rectangle CropArea; // assign the rectangle the x,y cordinates.
Bitmap bmpImage = new Bitmap(img);
Bitmap bmpCrop = bmpImage.Clone(cropArea,
bmpImage.PixelFormat);
return (Image)(bmpCrop);
【讨论】:
以上是关于如何在选择图像的某个区域时裁剪图像的主要内容,如果未能解决你的问题,请参考以下文章