如何在不改变宽高比的情况下裁剪图像

时间:2012-02-28 06:47:27

标签: c# image-processing emgucv edsdk

我需要裁剪图片而不更改其宽高比。我正在使用EDSDK从 CANON1100D 拍照。捕获的图像:   宽度= 1920 高度= 1280
纵横比 1.5 。但我需要宽高比 1.33 的图片。


// convert into processing resolution (1600,1200) 

Image<Bgr, byte> runtime_frm = new Image<Bgr, byte>(frame.ToBitmap(1600,1200));

// also in bitmap processing 

// Bitmap a = new Bitmap(runtime_frm.ToBitmap());  
// Bitmap b = new Bitmap(a, new Size(1600,1200));

它正在调整图像大小,以便改变图像的宽高比,但会在图像中产生压力。我需要在运行时将图像(1920x1280)裁剪为(1600x1200)。

我如何以编程方式执行此操作?任何想法

2 个答案:

答案 0 :(得分:3)

 public void Crop(Bitmap bm, int cropX, int cropY,int cropWidth,int cropHeight)
 {
       var rect = new System.Drawing.Rectangle(cropX,cropY,cropWidth,cropHeight);

       Bitmap newBm = bm.Clone(rect, bm.PixelFormat);

       newBm.Save("image2.jpg");
 }

也许是这样的?

source

答案 1 :(得分:3)

这是我对中心裁剪的解决方案。


Bitmap CenterCrop(Bitmap srcImage, int newWidth, int newHeight)
{
     Bitmap ret = null;

     int w = srcImage.Width;
     int h = srcImage.Height;

     if ( w < newWidth || h < newHeight)
     {
           MessageBox.Show("Out of boundary");
           return ret;
     }

     int posX_for_centerd_crop = (w - newWidth) / 2;
     int posY_for_centerd_crop = (h - newHeight) / 2;

     var CenteredRect = new Rectangle( posX_for_centerd_crop, 
                             posY_for_centerd_crop,  newWidth, newHeight);

     ret = srcImage.Clone(imageCenterRect, srcImage.PixelFormat);

     return ret;
}