gesture-imageview icon indicating copy to clipboard operation
gesture-imageview copied to clipboard

Implements pinch-zoom, rotate, pan as an ImageView for Android 2.1+

Results 46 gesture-imageview issues
Sort by recently updated
recently updated
newest added

Original version: protected void initImage() { if(this.drawable != null) { this.drawable.setAlpha(alpha); this.drawable.setFilterBitmap(true); if(colorFilter != null) { this.drawable.setColorFilter(colorFilter); } } if(!layout) { requestLayout(); redraw(); } } Fixed version: protected void initImage()...

I am using it with viewpager and loading images with Glide ,but the view hangs while zooming in and out

A good improvement could be to catch the onSwipe gesture on the image view!

@jasonpolites I applied the fix proposed in https://github.com/jasonpolites/gesture-imageview/issues/64 and tested it in one of my projects. It is working fine, so I'm glad to offer you a pull request.

I have problem with image scale in landscape mode, resolution 1080x1920px (1920x1080px in landscape). Image is also landscape with resolution 960x640px. Image should be resized by resized by height, but...

Don't know good place where i should post this method, Holp to help some people. In GestureImageViewTouchListener.java file, locate Ontouch methed. @Override public boolean onTouch(View v, MotionEvent event) { ```...

Hello, It would be great if in GestureImageView, there could be a function, say getCroppedImage(), where it will return a cropped bitmap. This cropped bitmap will be whatever is displayed...