我有一个旋转的位图,我想传递旋转的位图进行处理,但似乎从我的代码中传递的是原始位图,而不是旋转的位图。
我知道如何调整它吗?
using (var fullImg = new Bitmap(workGif))
{
try
{
RectangleF cloneRect = new RectangleF(0,0, fullImg.Width,fullImg.Height);
PixelFormat format = fullImg.PixelFormat;
Bitmap result = fullImg.Clone(cloneRect, format);
result.RotateFlip(RotateFlipType.Rotate180FlipNone);
string QRinfo = Process(result);
MessageBox.Show(QRinfo);
}
}