旋转时图像调整大小

Lad*_*ssa 6 c# visual-studio winforms

我正在尝试旋转图像..我有一个pictureBox 369x276.但是当我旋转时,这个尺寸减小了.

pictureBox sizeMode是PictureBoxSizeMode.StretchImage

这是我的代码:

        Bitmap oldBitmap = (Bitmap)pictureBox1.Image;
        float angle = 90;
        var newBitmap = new Bitmap(oldBitmap.Width, oldBitmap.Height);

        var graphics = Graphics.FromImage(newBitmap);
        graphics.TranslateTransform((float)oldBitmap.Width  / 2, (float)oldBitmap.Height / 2);
        graphics.RotateTransform(angle);
        graphics.TranslateTransform(-(float)oldBitmap.Width / 2, -(float)oldBitmap.Height / 2);
        graphics.DrawImage(oldBitmap, new Point(0, 0));
        pictureBox1.Image = newBitmap;
Run Code Online (Sandbox Code Playgroud)

JMK*_*JMK 5

只需使用旋转翻转:

Bitmap oldBitmap = (Bitmap)pictureBox1.Image;
oldBitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
pictureBox1.Image = oldBitmap;
Run Code Online (Sandbox Code Playgroud)

正如 @Dan-o 所指出的,这允许旋转System.Drawing.RotateFlipType枚举中的任何度数。

要旋转位图任意角度而不丢失大小,您可以执行以下操作,但这有点复杂!

- 将WriteableBitmapEx库添加到您的项目中

- 将 XAML、WindowsBase 和PresentationCore 库添加到您的项目中

- 使用以下命令将位图旋转任意角度:

class Program
{
    static void Main(string[] args)
    {
        Bitmap oldBitmap = (Bitmap)pictureBox1.Image;;

        var bitmapAsWriteableBitmap = new WriteableBitmap(BitmapToBitmapImage(oldBitmap));
        bitmapAsWriteableBitmap.RotateFree(23);

        var rotatedImageAsMemoryStream = WriteableBitmapToMemoryStream(bitmapAsWriteableBitmap);
        oldBitmap = new Bitmap(rotatedImageAsMemoryStream);
    }

    public static BitmapImage BitmapToBitmapImage(Bitmap bitmap)
    {
        var memStream = BitmapToMemoryStream(bitmap);
        return MemoryStreamToBitmapImage(memStream);
    }

    public static MemoryStream BitmapToMemoryStream(Bitmap image)
    {
        var memoryStream = new MemoryStream();
        image.Save(memoryStream, ImageFormat.Bmp);

        return memoryStream;
    }

    public static BitmapImage MemoryStreamToBitmapImage(MemoryStream ms)
    {
        ms.Position = 0;
        var bitmap = new BitmapImage();

        bitmap.BeginInit();

        bitmap.StreamSource = ms;
        bitmap.CacheOption = BitmapCacheOption.OnLoad;

        bitmap.EndInit();
        bitmap.Freeze();

        return bitmap;
    }

    private static MemoryStream WriteableBitmapToMemoryStream(WriteableBitmap writeableBitmap)
    {
        var ms = new MemoryStream();

        var encoder = new JpegBitmapEncoder();
        encoder.Frames.Add(BitmapFrame.Create(writeableBitmap));

        encoder.Save(ms);

        return ms;
    }
}
Run Code Online (Sandbox Code Playgroud)

屁股很痛,但是有效!

  • 如果您只想旋转 90 度,RotateFlip 就非常有用。操作的代码可以处理任何角度。 (3认同)