如何在选择某个区域时裁剪图像

时间:2011-07-06 13:17:18

标签: iphone objective-c image crop

我想通过将图像拖动到图像上来选择一些区域来裁剪图像。

1 个答案:

答案 0 :(得分:0)

我希望这会有所帮助,它是一个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);