开发者

in C# how to rotate picturebox with its image? [duplicate]

This question already has answers here: How do I rotate a picture in WinForms 开发者_Python百科 (12 answers) Rotate image math (C#) (6 answers) Rotate image in pictureBox (3 answers) Closed last year.

i am developing C# application in that i have to rotate whole picturebox with its iamge, i use rotateFlip() method but it only support 90,180,270 degrees and i want it for 1 degree


 Image img = pictureBox1.Image;
 img.RotateFlip(RotateFlipType.Rotate90FlipNone);
 pictureBox1.Image = img;


PIC_LOAD.Image.RotateFlip(RotateFlipType.Rotate90FlipXY);
PIC_LOAD.Refresh();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜