-1
votes
1answer
25 views

Smoothly zoom a big Image with SDL

I need to smoothly zoom in/out and pan an image (for a slideshow) with the sdl library. I've tried rotozoom from the SDL GFX library but it's far away from smooth. What would be the best approach ...
0
votes
0answers
36 views

jqzoom set margins to large image

As you can see below in picture, jqzoom set margins left and bottom of large image. Here is my jqzoom javascript: <script type="text/javascript"> $(document).ready(function () { ...
1
vote
1answer
205 views

Keep zoomable image in center of UIScrollView

In my iPhone app, I need to provide the user with an ability to zoom/pan a large-ish image on the screen. This is quite simple: I use UIScrollView, set max/min scale factors and zooming/panning works ...
0
votes
2answers
143 views

How to calculate the origin that starting zoom using jQuery?

Currently the zooming action is illustrate like the top graph. I would like to achieve the zoom action in bottom graph. The point is the zoom origin .Currently the codes are: ...
0
votes
0answers
86 views

How to mimic Ken Burns zoom effect with Mootools?

As most of you know Ken Burns zoom effect is one of the best effects out there and I would like to mimic this with Mootools if possible . You might have came across of JQuery sliders with this ...
0
votes
0answers
53 views

Image Container Dimensions Change From Startup Image Load To Secondary Image Load

I am working on an actionscript project involving adding and displaying labels on top of images. As part of this project, the user needs to be able to zoom in and out on the image, and when the image ...
0
votes
0answers
86 views

Zooming an image on android not working properly

To zoom an image i am doing the following.But using this the size (width and height) of the ImageView element remains same so only a part of the zoomed image is visible and the rest of the part is ...
0
votes
0answers
121 views

Cloudzoom plugin and transparent images

I'm using the Cloudzoom jQuery plugin for zooming images. When it comes to a transparent image, the zoomed image appears on top of the original one but being transparent, you can still see the ...
0
votes
0answers
78 views

iOS Apply Zoom level from one image to another

I have an app which displays an image, which is one side of a structure. By swiping left or right, the view will change the image to the side view of the structure. I have been asked to implement ...
0
votes
1answer
156 views

LoaderImageView zoom option not working

I displayed Image from the web. For xml I used below code: main.xml: <com.imloader.LoaderImageView android:id="@+id/loaderImageView" android:layout_width="wrap_content" ...
0
votes
1answer
373 views

iOS: simulate iPhone camera roll with zoom

In my app I simulate camera roll of iPhone; I have a mainScrollView with all image, and for every image I have a srollView to zoom it. You know that you can zoom every page with an image, but is ...
1
vote
0answers
370 views

Best way to apply cameraViewTransform to UIImagePickerControllerOriginalImage? iPhone SDK

I'm trying to apply the cameraViewTransform from my UIImagePickerController to the UIImagePickerControllerOriginalImage (the out coming UIImage from the camera). The only way I managed to do this is ...
2
votes
2answers
7k views

how to make pinch/zoom work on an image

I am still learning the tricks to jQuery mobile and have been having a problem with the zooming in and zooming out of a picture/image on a data-role="page." Is there a way to make the pinch/zoom work ...
0
votes
1answer
341 views

Zoom image inside preview

I am writing a GUI application that works on Mac and Win and there is one little problem, which i do not know how to solve. In my application i have a small (250 x 250 px) preview window (let' call ...
3
votes
1answer
1k views

One finger zoom + rotate in Android

I was developing a zoom control in android based on the tutorial: Android one finger zoom tutorial public abstract class Dynamics { /** * The maximum delta time, in milliseconds, between two updates ...
2
votes
1answer
3k views

Zooming in on mouse position in OpenGl

I wish to implement a zoom-to-mouse-position-with-scrollwheel-algorithm for a CAD application I work on. Similar question have been asked (This one for example), but all the solutions i found used ...
2
votes
1answer
2k views

JavaScript Image zoom with CSS3 Transforms, How to calculate Origin? (with example)

I'm trying to implement an image zoom effect, a bit like how the zoom works with Google Maps, but with a grid of fix position images. I've uploaded an example of what I have so far here: ...