blob: 63a41ae2e7a747c6254b68d32de8c26016ebc48e [file] [log] [blame] [view]
davemorrisseye7e9a6a2015-06-30 15:11:43 +01001Subsampling Scale Image View
David Morrisseya0bf8022014-05-30 14:08:31 +01002===========================
davemorrisseyb064b0b2013-08-26 09:45:26 -07003
David Morrisseycf2f5e92017-11-02 19:12:41 +00004[![Build Status](https://travis-ci.org/davemorrissey/subsampling-scale-image-view.svg?branch=master)](https://travis-ci.org/davemorrissey/subsampling-scale-image-view)
5
David Morrissey71b94c22015-03-04 23:10:45 +00006A custom image view for Android, designed for photo galleries and displaying huge images (e.g. maps and building plans) without `OutOfMemoryError`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.
David Morrisseyd4191862014-10-18 23:14:07 +01007
davemorrissey4fcb6132015-03-23 21:04:41 +00008The 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, see [the wiki](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/02.-Displaying-images).
David Morrissey71b94c22015-03-04 23:10:45 +00009
davemorrissey55dadbb2015-03-22 19:16:07 +000010#### Guides
11
davemorrissey126eefa2015-03-22 19:18:54 +000012* [Releases & downloads](https://github.com/davemorrissey/subsampling-scale-image-view/releases)
davemorrissey0f4cd932015-03-23 20:12:12 +000013* [Installation and setup](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/01.-Setup)
14* [Image display notes & limitations](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/02.-Displaying-images)
15* [Using preview images](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/03.-Preview-images)
16* [Handling orientation changes](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/05.-Orientation-changes)
17* [Advanced configuration](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/07.-Configuration)
18* [Event handling](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/09.-Events)
19* [Animation](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/08.-Animation)
davemorrissey49fb9342015-03-23 22:24:29 +000020* [Extension](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/10.-Extension)
David Morrissey3fccc742017-11-16 14:57:46 +000021* [Reference (JavaDocs)](http://davemorrissey.github.io/subsampling-scale-image-view/javadoc/)
davemorrissey55dadbb2015-03-22 19:16:07 +000022
David Morrisseyb11947f2017-12-02 08:40:06 +000023#### Migration guides
David Morrissey71b94c22015-03-04 23:10:45 +000024
David Morrissey81814502017-12-12 08:36:25 +000025Versions 3.9.0, 3.8.0 and 3.0.0 contain breaking changes. Migration instructions can be found [in the wiki](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/X.--Migration-guides).
David Morrisseycf188f82017-11-16 12:58:43 +000026
David Morrisseyef41d8a2014-06-10 01:00:09 +010027#### Download the sample app
28
David Morrisseyed7bd392017-11-27 10:52:56 +000029[![Get it on Google Play](docs/images/google_play.png)](https://play.google.com/store/apps/details?id=com.davemorrissey.labs.subscaleview.sample)
David Morrisseyef41d8a2014-06-10 01:00:09 +010030
David Morrisseycac44072017-11-27 10:54:24 +000031[Kotlin Sample App on GitHub](https://github.com/davemorrissey/ssiv-kotlin-sample)
32
David Morrissey01028652017-11-17 18:03:50 +000033#### Demo
34
35![Demo](docs/images/demo.gif)
36
David Morrissey36cc1252015-01-12 21:42:02 +000037## Features
David Morrissey0e895c22013-08-26 20:07:35 +010038
David Morrisseya0bf8022014-05-30 14:08:31 +010039#### Image display
David Morrissey365ccab2014-07-31 00:08:41 +010040
David Morrissey71b94c22015-03-04 23:10:45 +000041* Display images from assets, resources, the file system or bitmaps
David Morrisseya0bf8022014-05-30 14:08:31 +010042* Automatically rotate images from the file system (e.g. the camera or gallery) according to EXIF
43* Manually rotate images in 90° increments
David Morrissey0d041ff2015-03-08 21:44:44 +000044* Display a region of the source image
45* Use a preview image while large images load
David Morrisseya0bf8022014-05-30 14:08:31 +010046* Swap images at runtime
David Morrissey36cc1252015-01-12 21:42:02 +000047* Use a custom bitmap decoder
David Morrissey0e895c22013-08-26 20:07:35 +010048
David Morrissey71b94c22015-03-04 23:10:45 +000049*With tiling enabled:*
David Morrissey365ccab2014-07-31 00:08:41 +010050
51* Display huge images, larger than can be loaded into memory
52* Show high resolution detail on zooming in
David Morrissey71b94c22015-03-04 23:10:45 +000053* Tested up to 20,000x20,000px, though larger images are slower
David Morrissey365ccab2014-07-31 00:08:41 +010054
David Morrisseya0bf8022014-05-30 14:08:31 +010055#### Gesture detection
davemorrissey55dadbb2015-03-22 19:16:07 +000056
David Morrisseya0bf8022014-05-30 14:08:31 +010057* One finger pan
58* Two finger pinch to zoom
davemorrisseya0336982015-02-23 21:49:23 +000059* Quick scale (one finger zoom)
David Morrisseya0bf8022014-05-30 14:08:31 +010060* Pan while zooming
61* Seamless switch between pan and zoom
62* Fling momentum after panning
David Morrissey77096ba2014-06-05 21:22:44 +010063* Double tap to zoom in and out
David Morrissey02ceb3d2014-05-30 20:48:51 +010064* Options to disable pan and/or zoom gestures
David Morrisseya0bf8022014-05-30 14:08:31 +010065
David Morrissey9f3fad12014-06-08 10:16:49 +010066#### Animation
davemorrissey55dadbb2015-03-22 19:16:07 +000067
David Morrissey9f3fad12014-06-08 10:16:49 +010068* Public methods for animating the scale and center
69* Customisable duration and easing
70* Optional uninterruptible animations
71
David Morrisseya0bf8022014-05-30 14:08:31 +010072#### Overridable event detection
73* Supports `OnClickListener` and `OnLongClickListener`
74* Supports interception of events using `GestureDetector` and `OnTouchListener`
75* Extend to add your own gestures
76
77#### Easy integration
78* Use within a `ViewPager` to create a photo gallery
79* Easily restore scale, center and orientation after screen rotation
80* Can be extended to add overlay graphics that move and scale with the image
81* Handles view resizing and `wrap_content` layout
82
davemorrissey55dadbb2015-03-22 19:16:07 +000083## Quick start
David Morrisseya0bf8022014-05-30 14:08:31 +010084
David Morrisseyb11947f2017-12-02 08:40:06 +000085**1)** Add `com.davemorrissey.labs:subsampling-scale-image-view:3.9.0` as a dependency in your build.gradle file.
David Morrissey365ccab2014-07-31 00:08:41 +010086
davemorrissey55dadbb2015-03-22 19:16:07 +000087**2)** Add the view to your layout XML.
David Morrisseya0bf8022014-05-30 14:08:31 +010088
89 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
90 android:layout_width="match_parent"
91 android:layout_height="match_parent" >
92
93 <com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
94 android:id="@+id/imageView"
David Morrisseye11ee3e2014-05-30 14:09:41 +010095 android:layout_width="match_parent"
96 android:layout_height="match_parent"/>
David Morrisseya0bf8022014-05-30 14:08:31 +010097
Ed George86af5fa2015-06-29 17:34:47 +010098 </LinearLayout>
David Morrisseya0bf8022014-05-30 14:08:31 +010099
David Morrissey93091802016-11-04 19:13:52 +0000100**3a)** Now, in your fragment or activity, set the image resource, asset name or file path.
David Morrisseya0bf8022014-05-30 14:08:31 +0100101
102 SubsamplingScaleImageView imageView = (SubsamplingScaleImageView)findViewById(id.imageView);
David Morrissey71b94c22015-03-04 23:10:45 +0000103 imageView.setImage(ImageSource.resource(R.drawable.monkey));
David Morrissey36cc1252015-01-12 21:42:02 +0000104 // ... or ...
David Morrissey71b94c22015-03-04 23:10:45 +0000105 imageView.setImage(ImageSource.asset("map.png"))
David Morrisseya0bf8022014-05-30 14:08:31 +0100106 // ... or ...
David Morrissey71b94c22015-03-04 23:10:45 +0000107 imageView.setImage(ImageSource.uri("/sdcard/DCIM/DSCM00123.JPG"));
David Morrisseya0bf8022014-05-30 14:08:31 +0100108
David Morrissey93091802016-11-04 19:13:52 +0000109**3b)** Or, if you have a `Bitmap` object in memory, load it into the view. This is unsuitable for large images because it bypasses subsampling - you may get an `OutOfMemoryError`.
110
David Morrissey3d3df1c2016-11-04 19:14:54 +0000111 SubsamplingScaleImageView imageView = (SubsamplingScaleImageView)findViewById(id.imageView);
112 imageView.setImage(ImageSource.bitmap(bitmap));
David Morrissey93091802016-11-04 19:13:52 +0000113
David Morrisseyf9537212017-12-11 09:00:33 +0000114## Photo credits
115
116* San Martino by Luca Bravo, via [unsplash.com](https://unsplash.com/photos/lWAOc0UuJ-A)
117* Swiss Road by Ludovic Fremondiere, via [unsplash.com](https://unsplash.com/photos/3XN-BNRDUyY)
118
David Morrissey5833e302014-06-06 22:08:14 +0100119## About
120
David Morrisseycb93ba02018-01-19 08:20:05 +0000121Copyright 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!