Thank you for taking the time to explain how to bring an image in and rotate it interactively -- nama ste!
@mariesh1152 жыл бұрын
Hello, I just want to know if is it possible to create the slider in GTK and if yes what is the command to do that
@krupeshshah75584 жыл бұрын
After start Rotating can we changes the Image when it reach at 90 angle???
@tahagholizadeh88854 жыл бұрын
how can i rotate image by mouse?
@clydeeisenbeis86252 жыл бұрын
Is there a website to download this code?
@this_is_cricket3 жыл бұрын
Thanks! This helps me a lot.
@anilconger86853 жыл бұрын
If you want to rotate the image from center, you must adjust the photos' dpi values minumum 96.
@softwebprojects50133 жыл бұрын
brother can we rotate this image in picture box please make a tutorial for this
@ferhatacar56416 жыл бұрын
It doesnt work for every photo I dont understand why
@AzureVan5 жыл бұрын
how to make the image to become resizeable using trackbar too?
@AbbaniYassine3 жыл бұрын
simple
@rubenbiancotti4027 жыл бұрын
Como hago esto mismo, pero en un PictureBox? How Can I make this, but in a PictureBox?
@RedStoneMatt2 жыл бұрын
Can you publish the code please? Rewriting everything is really not fun
@LordRaaa7 жыл бұрын
if you add double buffer code or do in properties it will not flicker.
@LordRaaa7 жыл бұрын
this.DoubleBuffered = true;
@benhannes88806 жыл бұрын
OK?
@janjonas2706 жыл бұрын
how to make it from Properties.Resources ? (Btw. it's C -Sharp ,not C -Hash)
@flebedev9974 Жыл бұрын
There is a simpler way to do this: using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; Form form = new Form("Image rotation"); Image image = Image.FromFile("yourImage"); Graphics g = form.CreateGraphics(); float angle = 0; //what ever angle you want to rotate by GraphicsState state = g.Save(); g.TranslateTransform(form.Width/2, form.Height/2); g.RotateTransform(angle); g.TranslateTransform(-form.Width/2, -form.Height/2); g.DrawImage(image, form.Width - image.Height/2, form.Width - image.Width/2); g.Restore(state); while(form.Created) { }
@alamji35663 жыл бұрын
Why do u keep saying Okey XD? sound srtange
@HOWYOUDOIN8843 жыл бұрын
lol C hash... it's supposed to be C Sharp
@jeremykiahsobyk1023 жыл бұрын
C octothorpe XD
@filipMmM6 жыл бұрын
STOP SAYING "OK" EVERY 10 SECONDS! IT IS REALLY ANNOYING!