ImageViewZoom
Android ImageView widget with zoom and pan capabilities
Install / Use
/learn @sephiroth74/ImageViewZoomREADME
ImageViewTouch for Android
ImageViewTouch is an android ImageView widget with zoom and pan capabilities.
This is an implementation of the ImageView widget used in the Gallery app of the Android opensource project.
Checkout the repository and run the ImageViewTouchTest project to see how it works. Beside the superclass setImageBitmap method it offers the following methods:
setImageBitmap( final Bitmap bitmap, Matrix matrix );setImageBitmap( final Bitmap bitmap, Matrix matrix, float minZoom, float maxZoom );
If you want to load a new Bitmap with a particular zoom/pan state (let's say the same from another ImageView ), you can call:
Matrix matrix = mImageView1.getDisplayMatrix();
mImageView2.setImageBitmap( bitmap, matrix );
Tweaks
The initial display state can be set, using public void setDisplayType( DisplayType type ), as:
DisplayType.FIT_TO_SCREEN: The image loaded will always fit the current view's bounds.DisplayType.NONE: The image will be presented with its current dimensions if smaller than the image bounds, otherwise it will be scaled to fit its contents inside the screen.DisplayType.FIT_HEIGHT: The image loaded will always fit the height of the current view.DisplayType.FIT_WIDTH: The image loaded will always fit the width of the current view.
The default display state is `DisplayState.NONE'.
##Usage (Maven) <dependency> <groupId>it.sephiroth.android.library.imagezoom</groupId> <artifactId>imagezoom</artifactId> <version>2.3.0</version> </dependency>
##Usage (Gradle)
dependencies {
compile 'it.sephiroth.android.library.imagezoom:imagezoom:+'
}
##LICENSE
This software is provided under the MIT license:<br /> http://opensource.org/licenses/mit-license.php
##Author
Related Skills
node-connect
335.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
335.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.5kCommit, push, and open a PR

