- Notifications
You must be signed in to change notification settings - Fork1.2k
Android library (AAR). Highly configurable, easily extendable deep zoom view for displaying huge images without loss of detail. Perfect for photo galleries, maps, building plans etc.
License
davemorrissey/subsampling-scale-image-view
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A custom image view for Android, designed for photo galleries and displaying huge images (e.g. maps and building plans) withoutOutOfMemoryError
s. Includes pinch to zoom, panning, rotation and animation support, and allows easy extension so you can add your own overlays and touch event detection.
The view optionally uses subsampling and tiles to support very large images - a low resolution base layer is loaded and as you zoom in, it is overlaid with smaller high resolution tiles for the visible area. This avoids holding too much data in memory. It's ideal for displaying large images while allowing you to zoom in to the high resolution details. You can disable tiling for smaller images and when displaying a bitmap object. There are some advantages and disadvantages to disabling tiling so to decide which is best, seethe wiki.
- Releases & downloads
- Installation and setup
- Image display notes & limitations
- Using preview images
- Handling orientation changes
- Advanced configuration
- Event handling
- Animation
- Extension
- Reference (JavaDocs)
Versions 3.9.0, 3.8.0 and 3.0.0 contain breaking changes. Migration instructions can be foundin the wiki.
- Display images from assets, resources, the file system or bitmaps
- Automatically rotate images from the file system (e.g. the camera or gallery) according to EXIF
- Manually rotate images in 90° increments
- Display a region of the source image
- Use a preview image while large images load
- Swap images at runtime
- Use a custom bitmap decoder
With tiling enabled:
- Display huge images, larger than can be loaded into memory
- Show high resolution detail on zooming in
- Tested up to 20,000x20,000px, though larger images are slower
- One finger pan
- Two finger pinch to zoom
- Quick scale (one finger zoom)
- Pan while zooming
- Seamless switch between pan and zoom
- Fling momentum after panning
- Double tap to zoom in and out
- Options to disable pan and/or zoom gestures
- Public methods for animating the scale and center
- Customisable duration and easing
- Optional uninterruptible animations
- Supports
OnClickListener
andOnLongClickListener
- Supports interception of events using
GestureDetector
andOnTouchListener
- Extend to add your own gestures
- Use within a
ViewPager
to create a photo gallery - Easily restore scale, center and orientation after screen rotation
- Can be extended to add overlay graphics that move and scale with the image
- Handles view resizing and
wrap_content
layout
1) Add this library as a dependency in your app's build.gradle file.
dependencies { implementation'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'}
If your project uses AndroidX, change the artifact name as follows:
dependencies { implementation'com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0'}
2) Add the view to your layout XML.
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent" > <com.davemorrissey.labs.subscaleview.SubsamplingScaleImageViewandroid:id="@+id/imageView"android:layout_width="match_parent"android:layout_height="match_parent"/></LinearLayout>
3a) Now, in your fragment or activity, set the image resource, asset name or file path.
SubsamplingScaleImageViewimageView = (SubsamplingScaleImageView)findViewById(id.imageView);imageView.setImage(ImageSource.resource(R.drawable.monkey));// ... or ...imageView.setImage(ImageSource.asset("map.png"))// ... or ...imageView.setImage(ImageSource.uri("/sdcard/DCIM/DSCM00123.JPG"));
3b) Or, if you have aBitmap
object in memory, load it into the view. This is unsuitable for large images because it bypasses subsampling - you may get anOutOfMemoryError
.
SubsamplingScaleImageViewimageView = (SubsamplingScaleImageView)findViewById(id.imageView);imageView.setImage(ImageSource.bitmap(bitmap));
- San Martino by Luca Bravo, viaunsplash.com
- Swiss Road by Ludovic Fremondiere, viaunsplash.com
Copyright 2018 David Morrissey, and licensed under the Apache License, Version 2.0. No attribution is necessary but it's very much appreciated. Star this project if you like it!
About
Android library (AAR). Highly configurable, easily extendable deep zoom view for displaying huge images without loss of detail. Perfect for photo galleries, maps, building plans etc.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.