在 C# 中旋转图像时如何防止剪切?
我刚刚经历了很多事情,试图找出如何让图像旋转。这是可行的,但现在它正在剪切,我不太确定如何让它停止...我正在使用这个rotateImage方法:
public static Image RotateImage(Image img, float rotationAngle)
{
//create an empty Bitmap image
Bitmap bmp = new Bitmap(img.Width, img.Height);
//turn the Bitmap into a Graphics object
Graphics gfx = Graphics.FromImage(bmp);
//now we set the rotation point to the center of our image
gfx.TranslateTransform((float)bmp.Width / 2, (float)bmp.Height / 2);
//now rotate the image
gfx.RotateTransform(rotationAngle);
gfx.TranslateTransform(-(float)bmp.Width / 2, -(float)bmp.Height / 2);
//set the InterpolationMode to HighQualityBicubic so to ensure a high
//quality image once it is transformed to the specified size
gfx.InterpolationMode = InterpolationMode.HighQualityBicubic;
//now draw our new image onto the graphics object
gfx.DrawImage(img, new System.Drawing.Point(0, 0));
//dispose of our Graphics object
gfx.Dispose();
//return the image
return bmp;
}
我尝试使空位图变大,但这只适用于一侧,因为图像被固定到位图的左上角。任何想法将不胜感激!
I just went through a bunch of stuff trying to figure out how to get the image to even rotate. That works but now it's clipping and I'm not really sure how to make it stop... I'm using this rotateImage method:
public static Image RotateImage(Image img, float rotationAngle)
{
//create an empty Bitmap image
Bitmap bmp = new Bitmap(img.Width, img.Height);
//turn the Bitmap into a Graphics object
Graphics gfx = Graphics.FromImage(bmp);
//now we set the rotation point to the center of our image
gfx.TranslateTransform((float)bmp.Width / 2, (float)bmp.Height / 2);
//now rotate the image
gfx.RotateTransform(rotationAngle);
gfx.TranslateTransform(-(float)bmp.Width / 2, -(float)bmp.Height / 2);
//set the InterpolationMode to HighQualityBicubic so to ensure a high
//quality image once it is transformed to the specified size
gfx.InterpolationMode = InterpolationMode.HighQualityBicubic;
//now draw our new image onto the graphics object
gfx.DrawImage(img, new System.Drawing.Point(0, 0));
//dispose of our Graphics object
gfx.Dispose();
//return the image
return bmp;
}
I tried making the empty bitmap larger but that only works for one side since the image is pinned to the upper left corner of the bitmap. Any ideas would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我从另一个网站找到了一些帮助。这就是我最终为那些想知道的人所做的事情:
I found some help from another website. Here's what I ended up doing for those of you who want to know:
请按照下列步骤操作:
完成上述步骤的详细信息:
W,H = 宽度 &目的地高度
w,h = 宽度 &源高度
c=|cos(theta)|
s=|sin(θ)|
w * c + h * s = W
w * s + h * c = H
ox = ( W - w ) / 2
oy = ( H - h ) / 2
follow these steps:
Details to accomplish above steps:
W,H = width & height of destination
w,h = width & height of source
c=|cos(theta)|
s=|sin(theta)|
w * c + h * s = W
w * s + h * c = H
ox = ( W - w ) / 2
oy = ( H - h ) / 2
旋转的图像可能需要包含更大的位图而不进行剪切。计算边界的一种相当简单的方法是将变换矩阵应用于原始边界矩形的角。由于新位图较大,因此必须将原始图像绘制为居中,而不是位于 (0,0)。
这在您的代码的以下修订中得到了证明:
A rotated image may require a larger bitmap to be contained without clipping. A fairly simple way to compute the bounds is to apply the transformation matrix to the corners of the original bounding rectangle. Since the new bitmap is larger, the original image must be drawn such that it is centered, rather than at (0,0).
This is demonstrated in the following revision to your code: