Questions tagged [touchimageview]

Extends Android ImageView to include pinch zooming, panning, fling and double tap zoom.

TouchImageView.java by Michael Ortiz

Adds panning, pinch zoom, double tap zoom, and fling to Android ImageView.

74 questions
8
votes
4 answers

Android: Glide not showing large image from URL

I'm trying to load a large hi-res (3225x4800) image from URL into glide for a newspaper company. The image I wanted to load is this High Res Image. String url =…
OBL
  • 367
  • 1
  • 4
  • 13
5
votes
1 answer

Android Mobile Vision text recognition zoom to found coordinates

I'm using Googles Mobile Vision API to recognize text (numbers) in a static Bitmap. Now I would like to zoom in to the place where the number was found. So this is how I scan the Bitmap and obtain my x and y coordinates Point[] p =…
BR75
  • 633
  • 7
  • 25
5
votes
1 answer

Zoomable SVG with clickable areas - Android

I'm making very simple application. It needs to show one SVG containing generalised world map. By clicking on city's name (svg rectangle), I need to show another SVG that corresponds to that city. Also, all SVGs must support zooming and panning. I…
Aleksandar
  • 1,163
  • 22
  • 41
4
votes
3 answers

How to reset the zoomed image into original image

I am using the TouchImageView class available at https://github.com/MikeOrtiz/TouchImageView. when i move from the zoomed image to next and get back to previous image it still have zooming. I want to reset the zooming image into normal position when…
siva
  • 375
  • 6
  • 24
3
votes
0 answers

How to implement zoom and pan using two fingers (both) in this code?

This code loads a picture and puts it in a imageView , then you can draw rectangles on the image, using the canvas. imageView there are two , one for loading an image , the other to draw rectangles on this . I need to zoom and pan (using two fingers…
3
votes
0 answers

TouchImageView inside ScrollView

I have a TouchImageView inside ScrollView but when I zoom the imageview and try to swipe up/down the response comes from the ScrollView. Is there any way to stop the ScrollView when I touch on TouchImageView
3
votes
0 answers

Moving hotspots i.e View over scaled & panned Image.

I have been working on for panning the image in a container for which I am using TouchImageView. What I am trying to achieve is that I want to translate some other view with respect to the amount of panning i.e translation made. Below is the…
Manoj
  • 2,799
  • 5
  • 30
  • 49
3
votes
3 answers

Pinch and double tap zoom for NetworkImageView

I am trying to implement pinch zoom and double tap feature on NetworkImageView inside a ViewPager. I referred to this tutorial: http://www.androidhive.info/2013/09/android-fullscreen-image-slider-with-swipe-and-pinch-zoom-gestures/ Images are…
3
votes
4 answers

TouchImageView zoom scaled to frame with Picasso

I was using Universal Image Loader library to load a set of images and TouchImageView to allow zooming. I decided to replace Universal Image Loader with picasso. Everything worked fine except now the image zooms around a frame which is slightly…
rmad
  • 31
  • 1
  • 2
2
votes
0 answers

want to show generated thumbnails in array of image view till 5 video capture

want to show thumbnails generated after each video capture will be shown on camera preview in an array of particular size. for example: 1st video taken ->bitmap generated->shown on camera preview. 2nd video taken ->bitmap generated->shown on camera…
Andro
  • 63
  • 16
2
votes
0 answers

Buttons on TouchImageView?

I'm using this awesome class to implement zoom in my imageView: https://github.com/MikeOrtiz/TouchImageView TouchImageView extends ImageView (so has the same properties) and adds zooming features. But I have a problem: I have small buttons on the…
2
votes
1 answer

Add OverlayView on ImageView in Android at particular X-Y Co-ordinate

I have back side TouchImageview, which having zoom in/out functionality, I am setting up bitmap on ImageView, the size of Bitmap is w-h (2100 x 2900), I have particular X-Y co-ordinate, now I want to add Overlay view at same co-ordinate as per…
Hiren Patel
  • 52,124
  • 21
  • 173
  • 151
2
votes
2 answers

Out of memory + Bitmap + ImageView + ViewPager

I'm working on a simple photo gallery for my app. But I'm having some really annoying memory leaks, and I don't know how to handle them. Can you guys help me? I've search in other question but, according to the answers, I seem to be doing things…
2
votes
0 answers

android touchimageview zooms already scaled image?

I'm using the touchimageview for zooming in my app. When I zoom an image it seems to be zooming into image that is scaled to fit the imagview rather than zooming into the images original size. Is there anyway to fix this?\ iv = new…
2
votes
2 answers

TouchImageView Scaletype centerCrop ??

I have an imageview where i have implemented the TouchImageView class for zoom functionality. But i'm not able to set the scaletype. I want the initial scaletype to be centercrop but i dosen't work. When i try…
hablema
  • 540
  • 1
  • 5
  • 17
1
2 3 4 5