好的,我试过了:
TransformedBitmap tbm = new TransformedBitmap(myBitmapSource, new RotateTransform(angle));
return tbm;
但这不适用于90度以上的角度以外的角度。
新的我尝试使用RenderTargetBitmap:
var image = new Canvas();
image.Width = myBitmapSource.PixelWidth;
image.Height = myBitmapSource.PixelHeight;
image.Background = new ImageBrush(myBitmapSource);
image.RenderTransform = new RotateTransform(angle);
RenderTargetBitmap rtb = new RenderTargetBitmap(myBitmapSource.PixelWidth, myBitmapSource.PixelHeight, myBitmapSource.DpiX, myBitmapSource.DpiY, myBitmapSource.Format);
rtb.Render(image);
return rtb;
但是这给了我:
"The calling thread must be STA, because many UI components require this."
这在没有GUI的服务中运行。
有人可以给我一个关于如何在任何角度旋转WPF中的BitmapSource(没有GUI)的工作代码示例吗?
更新
答案 0 :(得分:3)
只使用TransformedBitmap
var rotatedImage = new TransformedBitmap(image, new RotateTransform(180));
答案 1 :(得分:1)
您可以在单独的线程中运行该代码。只需设置单线程单元(STA)。
Thread thread = new Thread(DoTheRotation);
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
线程调用的方法中的旋转代码:
public void DoTheRotation()
{
var image = new Canvas();
image.Width = myBitmapSource.PixelWidth;
image.Height = myBitmapSource.PixelHeight;
image.Background = new ImageBrush(myBitmapSource);
image.RenderTransform = new RotateTransform(angle);
RenderTargetBitmap rtb = new RenderTargetBitmap(myBitmapSource.PixelWidth, myBitmapSource.PixelHeight, myBitmapSource.DpiX, myBitmapSource.DpiY, myBitmapSource.Format);
rtb.Render(image);
}
然后你只需要更改代码来传递对象。
答案 2 :(得分:0)
请注意,TransformedBitmap仅支持正交变换,例如90°增量的旋转变换和缩放变换。不支持使图像倾斜的变换。所以对于旋转你只能使用90度,180度,270度!正如原始问题中已经提到的那样!