Photo Viewer
This plugin can display your image in full screen with the ability to pan, zoom, and share the image.
https://github.com/sarriaroman/photoviewer
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionicβs experts offer premium advisory services for both community plugins and premier plugins.
Installation
- Capacitor
- Cordova
- Enterprise
$ npm install com-sarriaroman-photoviewer
$ npm install @awesome-cordova-plugins/photo-viewer
$ ionic cap sync
$ ionic cordova plugin add com-sarriaroman-photoviewer
$ npm install @awesome-cordova-plugins/photo-viewer
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Β Learn More or if you're interested in an enterprise version of this plugin Contact Us
Supported Platforms
- Android
- iOS
Usage
React
Learn more about using Ionic Native components in React
Angular
import { PhotoViewer } from '@awesome-cordova-plugins/photo-viewer/ngx';
constructor(private photoViewer: PhotoViewer) { }
...
this.photoViewer.show('https://mysite.com/path/to/image.jpg');
this.photoViewer.show('https://mysite.com/path/to/image.jpg', 'My image title', {share: false});
this.photoViewer.show('https://mysecuresite.com/path/to/image.jpg', 'My image title', {share: false, headers: '{username:foo,password:bar}'});