Questions tagged [image-rotation]

Image rotation is performing a geometric rotation with certain angle on a particular image.

Image rotation is performing a geometric rotation with certain angle on a particular image. An image can be rotated by a positive angle or negative angle, which will rotate the image clockwise or counterclockwise. Rotating an image by 360 degrees or -360 degrees will actually result in the same image as the original image, while rotating on 180 or -180 degrees will display an inverted copy of the original image.

844 questions
0
votes
0 answers

blockwise image rotation in matlab

I am working on ridge frequency estimation for which I have to obtain an blockwise oriented image. I have developed the code but unable to remove an error. the process goes like this. Input image is G(m,n) and theta(m,n) is an image containing…
Ritesh
  • 256
  • 2
  • 13
0
votes
2 answers

Image/Icon Rotation in a Tab using CSS3 Rotation

I wanted to create a Metro Style Website and want to add Buttons like in the following : http://themeforest.net/item/metro-lab-responsive-metro-dashboard-template/full_screen_preview/5359122 When we hover over the 'New User', 'Sales' etc Tabs, the…
Jiteen
  • 429
  • 2
  • 6
  • 23
0
votes
3 answers

Rotated image wont display in php

So i am trying to create a compass to show wind direction. Function rotate($angle) { $original = imagecreatefrompng("img/Arrow.png"); $compass = imagerotate($original, $angle, 0); return $compass; } That will be displayed using…
sh3rifme
  • 1,054
  • 1
  • 11
  • 26
0
votes
0 answers

Where is the time going with my ImageMagick rotations?

I need to rotate an image from my Ruby/Rails application and I've been using ImageMagick through the RMagick gem. I've tried both the command line tool (i.e. convert) and the API (e.g. Magick::Image#rotate) and in both cases the performance is more…
Peter Alfvin
  • 28,599
  • 8
  • 68
  • 106
0
votes
3 answers

Rotating Wheel with labels - how to keep labels horizontal as the wheels rotates?

I have been searching for a solution of how to implement a wheel of fortune-type wheel (working well) with the exception that I need the images/labels on the periphery of the wheel to stay horizontal and not rotate with the wheel. I have the…
pikovayadama
  • 808
  • 2
  • 8
  • 26
0
votes
1 answer

Draw image in 3D space with GDI, GDI+ and Delphi

I need use Delphi XE3 to write a small application to draw on TCanvas an image. I read this image from DXF file, so I know the filename, the scale about X and Y axies and the 3D space rotation and X, Y and Z axies (for more details about see…
Martin
  • 1,065
  • 1
  • 17
  • 36
0
votes
1 answer

My Slick2d Image does not rotate as expected

I have a simple image in my Slick2d based Java game and I am trying to rotate it 90 degrees. However, when using the "Image.rotate(angle)" method the image ends up moving as well as rotating. I have tried forcefully setting the centre of rotation to…
Josh Suckling
  • 217
  • 7
  • 14
0
votes
1 answer

Image orientation in iOS 7

UIImage *rotatedImage = [UIImage imageWithCGImage:[img CGImage] scale:1.0 orientation:imageView.image.imageOrientation]; // Setting img to imageview [imageView setImage:rotatedImage]; Above is code which works perfectly fine in iOS 6, but does not…
subhash Amale
  • 325
  • 3
  • 4
  • 14
0
votes
2 answers

Objective-C CGAffineTransformRotate does not work

Hey there need your help, I'am trying to create an analog clock for my iPhone. The Problem is, the UIImage does not move in the right way or doesn't move, most time it is spinnig all over the View. Is there any Framework missing, I converted Degree…
0
votes
1 answer

rotate uncompressed bmp by a multiple of 90

I need to rotate a bmp given an angle in multiples of 90. Im trying to figure out how to accomplish this. Can somebody guide me in the right direction to approach this problem? The rotation angles, which are multiples of 90 could be positive as well…
user2913269
0
votes
2 answers

Image rotation about an arbitrary point

I was asked to perform an image rotation about an arbitrary point. The framework they provided was in matlab so I had to fill a function called MakeTransformMat that receives the angle of rotation and the point where we want to rotate. As I've seen…
BRabbit27
  • 6,333
  • 17
  • 90
  • 161
0
votes
1 answer

jQuery - continue rotate image after reload page

I have a simple function that rotate images and works fine. But the problem is that after reload page is the first always default image, so rotate begin from start. I would like to have after reload page the same image as before reload and continue…
Jaroslav Klimčík
  • 4,548
  • 12
  • 39
  • 58
0
votes
1 answer

How do I animate, Moving an ImageView on a circular path with certain radius in android?

Please Find the attachment for my image. https://docs.google.com/file/d/0B_c-SDSO63obS0ZyQ1dsOXdUQmc/edit?usp=sharing My task is, animate that GONG type of image up to some time with clock wise and anti clock wise. For that i did some coding in…
0
votes
3 answers

Rotating an image made in javascript

I want to rotate an image IN javascript. The variable used for the image in javascript is heroImage. I am using jquery rotate, it works fine only when rotating images in html, but not in javascript. Normally it looks something like…
none
  • 9
  • 2
  • 6
0
votes
2 answers

Image Rotation by using Opengl ES

I'm working on Opengl ES 2.0 using OMAP3530 development board on Windows CE 7. My Task is to Load a 24-Bit Image File & rotate it about an angle in z-Axis & export the image file(Buffer). For this task I've created a FBO for off-screen rendering &…
Balaji R
  • 1,805
  • 22
  • 41