gpt4 book ai didi

c# - 裁剪图像的左侧

转载 作者:太空狗 更新时间:2023-10-29 20:07:41 27 4
gpt4 key购买 nike

我需要做的只是裁剪下面的图片

enter image description here

并且只显示邮件项目而不是邮件图片。

我使用了以下代码,但它只裁剪了右侧而不是左侧。

注:图片只是示例,来自google image

 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(); }

最佳答案

你读过MSDN?吗?

明确指出:

rect

Type: System.Drawing.Rectangle

Defines the portion of this Bitmap to copy. Coordinates are relative to this Bitmap.

您只需要适当的坐标:

Rectangle(20, 0, 182, 17)

关于c# - 裁剪图像的左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18444901/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com