Hi, boddy, if you wanna a image rotating app, I can recommen this image rotation program in c# .net according to my experience, i tested this app several times, may you can have a try. here is a short sample code, and you can see this for more image processing in c#.
Felton LEEPosted Apr 19, 2013, 2:59 AM
here is a short sample code, and you can see this for more image processing in c#.
Yashwanth SannithiPosted May 29, 2012, 7:06 AM
It is working as,showing just cross image.
My criteria is, the image will rotate in 4 directions.
Blocked AccountPosted May 29, 2012, 6:40 AM
You can rotate image by using CSS3 transform property
like that
define one style
.divStyle
{
transform:rotate(7deg);
-ms-transform:rotate(7deg); /* IE 9 */
-moz-transform:rotate(7deg); /* Firefox */
-webkit-transform:rotate(7deg); /* Safari and Chrome */
-o-transform:rotate(7deg); /* Opera */
}
and now apply this style like that