8

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

Matěj Zábský
  • 16,909
  • 15
  • 69
  • 114
Kailas Mirgane
  • 89
  • 1
  • 4
  • 12

2 Answers2

0
 Image img = pictureBox1.Image;
 img.RotateFlip(RotateFlipType.Rotate90FlipNone);
 pictureBox1.Image = img;
Kirtan Magan
  • 31
  • 1
  • 2
-1
PIC_LOAD.Image.RotateFlip(RotateFlipType.Rotate90FlipXY);
PIC_LOAD.Refresh();
Cardin
  • 5,148
  • 5
  • 36
  • 37
  • 1
    As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jan 29 '22 at 05:26