af-cdv-photoviewer

1.2.0 • Public • Published

Photo Viewer

This plugin is intended to show a picture from an URL into a Photo Viewer with zoom features. This fork just removes the uri encoding of a string passed in, it mangles aws signed urls.

How to Install

Cordova:

cordova plugin add https://github.com/jliddev/photoviewer.git

Ionic 2:

$ ionic cordova plugin add https://github.com/jliddev/photoviewer.git
$ npm install --save @ionic-native/photo-viewer

Android

Out of the box

iOS

Out of the box

API

Show an image

PhotoViewer.show('http://my_site.com/my_image.jpg', 'Optional Title');

Optionally you can pass third parameter option as object.

Options:

  • share: Option is used to hide and show the share option.
  • closeBtn: Option for close button visibility when share false [ONLY FOR iOS]
  • copyToReference: If you need to copy image to reference before show then set it true [ONLY FOR iOS]
Usage
var options = {
    share: true, // default is false
    closeButton: false, // default is true
    copyToReference: true // default is false
};

PhotoViewer.show('http://my_site.com/my_image.jpg', 'Optional Title', options);

Versions

(1.0.2) Removed Podfile and the dependency
(1.1.0)

  • Removing project dependencies.
  • Moving to Gradle
  • Adding Square's Picasso as Image Loader
  • New Optional Title
  • Share button and title bar
  • Automatic close on error.
  • Support for content:// Uris from Cordova
  • Replaced old namespace
  • Published to NPM

(1.1.1)

  • Fix for sharing due to online restriction

(1.1.2)

  • Fix issues on iOS
  • iOS title not updating

(1.1.3)

  • Issue fixes

(1.1.4)

  • Base64 Support on Android

(1.1.5)

  • Option to hide and show share button on Android

(1.1.7)

  • Fix OOM issues on Android

(1.1.9/10)

  • Fix how image is shown on Android

(1.1.17)

  • Additional options added for iOS
  • Fix share issue with SDK version 24 or above on Android

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i af-cdv-photoviewer

      Weekly Downloads

      0

      Version

      1.2.0

      License

      MIT

      Unpacked Size

      31.7 kB

      Total Files

      10

      Last publish

      Collaborators

      • jliddev