我想通过将图像拖动到图像上来选择一些区域来裁剪图像。
答案 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);