
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
photoswipe-deep-zoom-plugin
Advanced tools
A plugin that adds tile-based zoom support to PhotoSwipe. Supports Deepzoom and Zoomify tile formats.
A plugin that adds tile-based zoom support to PhotoSwipe. Supports Deepzoom and Zoomify tile formats.
Unlike conventional viewers such as OpenLayers or OpenSeaDragon, it displays tiles only when user zooms beyond the primary image size. If user does not zoom - PhotoSwipe operates as usual.
If you just want to display a single tiled image, consider using OpenLayers, OpenSeaDragon or Leaflet.
The plugin requires a single JS file photoswipe-deep-zoom-plugin.esm.js. To view the source code visit src/.
Or install via NPM npm install photoswipe-deep-zoom-plugin.
import PhotoSwipeLightbox from './lib/photoswipe/photoswipe-lightbox.esm.js';
import PhotoSwipe from './lib/photoswipe/photoswipe.esm.js';
import PhotoSwipeDeepZoom from './photoswipe-deep-zoom-plugin.esm.js';
const lightbox = new PhotoSwipeLightbox({
gallery: '#gallery',
children: '.pswp-gallery__item',
pswpModule: PhotoSwipe,
// Recommended PhotoSwipe options for this plugin
allowPanToNext: false, // prevent swiping to the next slide when image is zoomed
allowMouseDrag: true, // display dragging cursor at max zoom level
wheelToZoom: true, // enable wheel-based zoom
zoom: false // disable default zoom button
});
const deepZoomPlugin = new PhotoSwipeDeepZoom(lightbox, {
// deep zoom plugin options, for example:
tileSize: 256
});
lightbox.init();
HTML for a single slide:
<div id="gallery" class="pswp-gallery">
<a
class="pswp-gallery__item"
href="primary-image.jpg"
target="_blank"
data-pswp-width="1600"
data-pswp-height="1024"
data-pswp-tile-type="deepzoom"
data-pswp-tile-url="path/to/tiles/{z}/{x}_{y}.jpeg"
data-pswp-max-width="5832"
data-pswp-max-height="4409">
<img src="thumbnail.jpg" alt="Image #1" />
</a>
<!-- more slides ... -->
</div>
Or as slide data:
const slides = [
{
src: 'primary-image.jpg',
w: 1600,
h: 1024,
msrc: 'thumbnail.jpg',
tileType: 'deepzoom',
tileUrl: 'path/to/tiles/{z}/{x}_{y}.jpeg',
tileSize: 254,
tileOverlap: 1,
maxWidth: 5832,
maxHeight: 4409
},
// more slides...
];
data-pswp-tile-urlTile URL. Can be also defined as tileUrl property of the slide data.
For example: https://example.com/images/my-image/{z}/{x}_{y}.jpg. {z}, {x} and {y} will be automaticlaly replaced with the corresponding tile coordinates.
If you're using Zoomify type, there in an additional template string {zoomify_group}. For example:
https://example.com/images/my-image/TileGroup{zoomify_group}/{z}-{x}-{y}.jpg"
data-pswp-tile-type: 'deepzoom'deepzoom and zoomify tile types are supported for now. Can be also defined as tileType property of the slide data.
data-pswp-max-width and data-pswp-max-heightMaximum size of the tiled image.
data-pswp-max-zoom-widthOptional. Controls how far the image can be zoomed, can be lower or higher than max-image-width.
For now, the plugin only supports Zoomify and Deepzoom tiles. You may use Vips to generate them.
fadeInDuration: 150Fade in animation duration for tiles when loaded, can be zero.
cacheLimit: 200Number of tiles to keep cached.
maxDecodingCount: 15Maximum decoding requests at a time.
minBatchRequestCount: 6Batch requests together, so they aren't sent one at a time when maxDecodingCount is reached.
tileSize: 256Default tile width. Individual slides can override it via data-pswp-tile-size attribute or tileSize property of the slide data.
tileOverlap: 0Default tile overlap. Individual slides can override it via data-pswp-tile-overlap attribute or tileOverlap property of the slide data.
incrementalZoomButtons: trueZoom in and zoom out buttons in the toolbar.
useLowResLayer: falseWill permanently display a low-resolution layer below the active one.
forceWillChange: trueWill apply will-change:transform to the placeholder and the primary PhotoSwipe image.
getTileUrlFnA function that should return the individual tile URL. For example:
getTileUrlFn: (slideData, x, y, z) {
return slideData.tileUrl
.replace('{x}', x)
.replace('{y}', y)
.replace('{z}', z);
}
maxTilePixelRatio: 1The viewer will load higher resolution tiles earlier on high DPI screens.
For example, if device pixel ratio is 2 (regular retina screen) and maxTilePixelRatio: 2, the viewer will render twice as many tiles.
If device pixel ratio is higher than maxTilePixelRatio, the viewer will render tiles according to the maxTilePixelRatio option. If it is lower - it'll render according to the device pixel ratio.
To build and minify JS in dist/:
npm run build
To update GitHub pages:
npm run publish:demo
maxTilePixelRatio.pswp-max-zoom-width (pswpMaxZoomWidth) that allows increasing or reducing how far the slide can be zoomed.+ and -).FAQs
A plugin that adds tile-based zoom support to PhotoSwipe. Supports Deepzoom and Zoomify tile formats.
The npm package photoswipe-deep-zoom-plugin receives a total of 270 weekly downloads. As such, photoswipe-deep-zoom-plugin popularity was classified as not popular.
We found that photoswipe-deep-zoom-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.