WPF:如何将BitmapSource旋转任意角度

本文关键字:旋转 任意角 BitmapSource WPF | 更新日期: 2023-09-27 18:24:12

好的,我试过这个:

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(没有GUI)中以任何角度旋转BitmapSource的工作代码示例吗?

更新:

投票支持功能请求:http://visualstudio.uservoice.com/forums/121579-visual-studio-2015/suggestions/10870098-allow-rotation-of-bitmapsource-by-any-angle

WPF:如何将BitmapSource旋转任意角度

只需使用TransformedBitmap

var rotatedImage = new TransformedBitmap(image, new RotateTransform(180));

您可以在单独的线程中运行该代码。只需设置单线程单元(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);
}

然后您只需要更改代码来传递对象。

请注意,TransformedBitmap仅支持正交变换,如90°增量的旋转变换和缩放变换。不支持扭曲图像的变换。所以对于旋转,你只能使用90、180、270度!正如在最初的问题中已经提到的!