0
votes
1answer
21 views

Get new crop coordinates after rotating a cropped image

I have a site where one of the features lets users upload images, then rotate/crop them. I'm using the following tools: ImageResizer JCrop So let's say a user wants to crop the image first, then ...
0
votes
0answers
33 views

Image Rotation Performance AS3

I have a vector image which I am using to highlight a segment of a circle, and I am rotating this around its central point. I am finding this is causing a fairly high amount of CPU to be used and I ...
0
votes
0answers
40 views

Rotate image on mouseover other DIV

I'm trying to make a pretty cool menu with some jQuery in it but I'm stuck. I have 3 menu items, each with a white arrow beneath it. I want the arrow (it's an image) to rotate 180 degrees when the ...
0
votes
2answers
98 views

How do I rotate a image 360 degree around is own axis in JavaScript?

I have tried for two days now to find a way to rotate my image while i input a button. What i want help with is to help me get the code to rotate a image in Javascript called images[0] around its own ...
1
vote
0answers
48 views

How do i just rotate a image in Javascript?

I am working on a program in Javascript while i tried to rotate my image i have draw. I tried to search on google to find my answear but all i got was how to rotate the whole canvas. What i am ...
0
votes
2answers
91 views

Java: rotating image so that it points at the mouse cursor

I want the player image to point towards the mouse cursor. I use this code to get the postion of the mouse cursor: private int cursorX = MouseInfo.getPointerInfo().getLocation().x; private int ...
0
votes
0answers
104 views

iOS - Help rotating an image (an asteroid ship image)

I am creating an asteroids clone for iOS. I have create a ship class and I am trying to rotate the ship itself. I've been able to do rotations in openGL, XNA, C#, etc. without any problems. I've read ...
0
votes
1answer
91 views

Collision detection on rotated image in javascript

I have created a js function, that should rotate a image for a collision detection, but the function don't works correct, when the rotation gets over π*1.5 (Pi), will the image crops. function ...
1
vote
1answer
143 views

Repeat an image in tile, and make it rotate

How do I fill a website with a repeated image in tiles, just like background-repeat: repeat; and make it rotate using either CSS or Javascript? To rotate a single image I can use CSS: ...
1
vote
1answer
35 views

filling desired color while rotating the image in scipy

I am rotating an image using scipy as follows scipy.misc.imrotate(im,60) The rotated image is filled with black values and i want white. Any suggestion? Thanks
2
votes
2answers
77 views

How to scale a image based on its rotation

I want to scale an image so that the image is always the size of the screen no matter how it is rotated. Does anyone have any ideas on going about this? By the way I am programing this in C# with xna. ...
0
votes
0answers
39 views

image.rotate versus rotate in external programs

I search for duplicates of pictures (in rotated pictures too) and didn't find any. I looked at the Images and found that the result of RotateFlip with RotateFlipType.Rotate90FlipNone is different to a ...
0
votes
1answer
86 views

Kinetic JS - image rotation based on rotating another object and anti clockwise rotation

I am trying to rotate an image using the mouse angle: First I calculate the mouse degree using: mouseX = parseInt(e.clientX - offsetX); mouseY = parseInt(e.clientY - ...
1
vote
1answer
124 views

Kinetic JS - Rotate image based on mouse angle

I am trying to rotate an image on its center using the angle of the mouse on the stage. It rotates using: dlayerA1.rotate(degree); but it flys all over and does not rotate on its center!! ...
0
votes
1answer
94 views

Trying to create a jQuery image rotator but can only get the first half of it to work

I'm trying to create an image rotator where one image will fade into the next and so on until it loops back to the first image. I got the first two images to work correctly but the remaining 3 don't ...
0
votes
1answer
303 views

Image rotate and show transition in Corona SDK

I am trying to click on the screen and have my tank barrel rotate to where I click. I have gotten that piece of code to work as of right now. The next step that I am attempting to do is lets say for ...
0
votes
0answers
11 views

About what point does MS Office Picture Manager rotates an image?

I want to know the exact Pixel Position or the point(centre? / corner-points?) about which a jpeg image is rotated clockwise by Pic Manager. Any means of finding this out?
0
votes
0answers
83 views

Image tilt correction in java? OMR Reader Application

I need to know how to apply tilt correction to scanned images of OMR Sheets. Before reading the sheets for evaluation, the image needs to be aligned perfectly. How is this done in java? the image ...
0
votes
1answer
82 views

How to rotate an image in java about a specific point rather than the image centre? [duplicate]

I've so far been using the Graphics2D.rotate(Math.toRadians(-1), newImage.getWidth() / 2, newImage.getHeight() / 2); to rotate an image for an OMR Application. The result is a rotated but blurred ...
0
votes
0answers
75 views

How to rotate image at a specific point by a certain angle in java?

I want to rotate an image about a specific pixel position and not about the centre of the image. I want to rotate the image by certain degrees less than 90. I've made use of rotate function of the ...
0
votes
0answers
27 views

Rotating a collection of images as if it was one image

I have a spritesheet that is 320px by 160px and each (8 total) are 80px by 80px. Currently, I can display each individual cell independently onto my canvas. My problem is that I would like to create ...
0
votes
1answer
49 views

Java AffinetransformOp filter() screws up my image

I am trying to rotate a 32 by 64 png image with 90 degree increments by using Affinetransform.rotate() and AffinetransformOp.filter. It works fine for 0, 90 and 180 degrees but at 270 degrees only ...
0
votes
0answers
149 views

How to place links in Javascript rotating images banner

Where would I place a URL link on the 2nd & 3rd images in the following script? I've tried different variations, but doesn't work the way it should. One issue I've run into often is where only one ...
0
votes
1answer
44 views

Set a point on the image to act as rotate point Pygame.transform.rotate()

I am newbie to both python and pygame. I want to rotate a rectangle about a point other than center. My code so far is : import pygame pygame.init() w = 640 h = 480 degree =45 ...
0
votes
2answers
150 views

PHP Image manipulation with rotation and crop

I have a problem with image manipulation in php. As they say, a picture paints a thousand words so below is an image to assist me in explaining my situation. I have a canvas (the picture of a car) ...
0
votes
1answer
166 views

iOS iPhone: Why does my image rotation skew the image?

I have searched all over Internet to find out how to rotate an image in UIImageView without the image going skewed. None of the examples I have tested has worked. So I have to post a specific question ...
1
vote
2answers
69 views

Rotate from -9 to 9 degress automatically

I currently have this code -webkit-transition: 0.9s; -webkit-transform: rotate(-9deg); -moz-transition: 0.9s; -moz-transform: rotate(-9deg); -o-transition: 0.9s; -o-transform: rotate(-9deg); ...
2
votes
2answers
166 views

Rotate an image in java by the specified angle

Here's the function which draws a shape at the given coordinates: public void drawTank(int x,int y){ int h = 50; int w = 50; graphic.setColor(Color.darkGray); graphic.drawRect(x, y, h, ...
0
votes
0answers
116 views

Rotate BufferedImage around its center and display the images using JLable ( continous Rotation effect)

I have an image of BufferedImage type and I am trying to rotate it around its center to get rotation effect.I am using JLabel and JFrame to display image.I am able to display the image initially but I ...
0
votes
0answers
193 views

Getting angle of rotated image in Android [closed]

I am working on a soundboard app for android, in that app I need to rotate an wheel. I got the rotating working with a tutorial. This is the code: public class soundboard extends Activity { ...
0
votes
0answers
50 views

Issue in FGallery while using with ios6

Used FGallery FGalleryViewController.m -(BOOL) shouldAutorotateToInterfaceOrientation the autorotation-methods for its parent controller have been overridden, which has worked wonderful until the ...
0
votes
0answers
60 views

Image displayed with wrong orientation

I have a webservice in blazeds and an application in Flex that communicate each other with amf channel... From the application you can take a photo and then save remotly on the server... From the ...
2
votes
1answer
106 views

How to make an image from iPhones library rotate in iOS?

I have an application which displays the artwork from a chosen song selected from the iPod library and would like to make it spin constantly. The code so far is as follows: ...
0
votes
2answers
252 views

Rotate image depending on screen size

I am trying to figure out how to rotate an image in a div depending on the screen size. Basically there is this set up: <div> <div with arrow pointing right > <div> in a fluid ...
0
votes
1answer
56 views

Rotating XNA Texture2D into another Texture2D

I know that Texture2D can be rotated during the Draw() process, but what I'm asking is a little different. I need the rotated Texture2D before drawing it, and storing it into another Texture2D for ...
0
votes
1answer
110 views

Rotate image by modifying css

I want to rotate two images by modifying css, like so: document.getElementById("id").style.backgroundImage = "url('image2.png')"; document.getElementById("id").style.backgroundImage = ...
0
votes
0answers
24 views

Rotating images whilst letting them drop

I am writing an app in Objective C. I am letting images drop down and whilst it does that it rotates. But gradual the images size keeps increasing. That is the line of code: CGAffineTransform rotate ...
0
votes
1answer
113 views

android image rotating, imports error

Hi to all. I'm having a problem with the imports. It's showing me errors on the imports and if I remove them the JpegImageMetadata, Sanselan, ImageReadException, TiffImageMetadata, ExifTagConstants ...
0
votes
1answer
273 views

C# Rotate an image around it's position, relative to the mouse position

I'm having some trouble rotating an image on it's own position relative to the position of the mouse position. I'm only able to make the image rotate around it's own point instead rotating on it. The ...
2
votes
1answer
275 views

How to rotate image in Android without using bitmap?

Captured Image stored in Landscape position so i want to change it to Potrait. How to do this without using Bitmap? If i use below code image get damaged.So only i want to do with out using bitmap. ...
1
vote
1answer
128 views

How to stop my images loading before the javascript slideshow loads?

I am new to this and have a quick question. I have a very simple slideshow on my home page. The problem I am having is the first second or so of loading the page, the slideshow images show up 1 on top ...
0
votes
0answers
54 views

captureManager save into wrong orientation

I'm developing a procedure that capture a picture from front camera and then save the graphics object into a blob of a sqlite3 database. All goes ok: I can view the picture in correct mode (if I use ...
0
votes
0answers
202 views

PHP/IOS6 prvent image from rotating when uploading from iphone using exif

I have a photo upload script written in PHP that works fine on regular pc images, however, when uploading images snapped on an iphone, it rotates them 90 degrees. Apparently, the problem is that the ...
1
vote
1answer
564 views

code to rotate image captured by camera intent not working in Android

I have a problem that my image captured using camera intent gets rotated, which I asked at why image captured using camera intent gets rotated on some devices in android So as per the suggested ...
0
votes
1answer
71 views

pygame rotatating image

I've been trying to make my turret rotate correctly, however, when I move my mouse (causing the rotation) the turret rotates above the tankbase, does anyone know an easy way to fix this? Help would be ...
0
votes
1answer
337 views

How to rotate a BufferedImage in Java? [duplicate]

Possible Duplicate: Rotating BufferedImage instances The method I am currently using (below) results in a BufferedImage that becomes increasingly distorted with smaller angle arguments. ...
1
vote
1answer
300 views

Image Rotation using Python

My problem is the following: I have two points in an image, I get the angle between these two points and rotate the image by this angle. I need to get the new position of this points in the image, ...
2
votes
1answer
352 views

openCV center of image rotation in C

I want to rotate 90 degrees counterclockwise, but it seems the rotation point is wrong. How do I find the rotation center of the source image? img=cvLoadImage(argv[1],-1); height = ...
1
vote
1answer
139 views

android display loading image while rotate

I have an Android apk which mainly is a webview to access html5 web. Every time when I rotate screen, it displays a blank screen while reloading/rerendering web page. Since web pages need to get data ...
0
votes
1answer
169 views

rotate image with css

I would like to rotate an image by 90 degrees with CSS only. I can do the rotation, but then the position of the image is not what it should be. First, it will overlay some other elements in the same ...

1 2 3 4 5