裁剪图像的左侧

问题描述 投票:7回答:1

我需要做的是裁剪以下图片。

enter image description here

并只显示邮件项目,而不是与该邮件图片。

我已经使用了下面的代码,但它只是裁剪右边而不是左边。

注:图片只是一个例子,从谷歌图片得到它

 Bitmap croppedBitmap = new Bitmap("E:/my234.png");
        try
        {
            croppedBitmap = croppedBitmap.Clone(new Rectangle(0,0,202, 17), System.Drawing.Imaging.PixelFormat.DontCare);
            pictureBox1.Image = croppedBitmap;
        }
        catch(Exception ex)
        { string se = ex.ToString(); }
c# image crop system.drawing
1个回答
11
投票

你有没有看过 MSDN?

明确指出,。

矩形

类型:系统.绘图.矩形 System.Drawing.Rectangle

定义该位图要复制的部分。坐标是相对于这个位图的。.

你所需要的是正确的坐标。

Rectangle(20, 0, 182, 17)

© www.soinside.com 2019 - 2024. All rights reserved.