Giter Site home page Giter Site logo

Comments (6)

idmadj avatar idmadj commented on August 18, 2024 6

On iOS, first add the cordova-plugin-file plugin (cordova plugin add cordova-plugin-file), then:

declare var cordova: any;

PhotoViewer.show(cordova.file.applicationDirectory + "www/image.jpg");

On Android, the URL returned by applicationDirectory won't work with PhotoViewer, but you can probably use File.readAsDataURL and pass the output string to PhotoViewer.show to leverage the base64 functionality.

Something like :

File.readAsDataURL(cordova.file.applicationDirectory + "www/", "image.jpg")
    .then((dataURL:string) => {PhotoViewer.show(dataURL)})

See https://github.com/apache/cordova-plugin-file

from photoviewer.

JoelAH avatar JoelAH commented on August 18, 2024

Hi Im using the base 64 functionality but it crashes on some device. Is there another way around this?

from photoviewer.

MT-- avatar MT-- commented on August 18, 2024

@JoelAH You might running into a memory issue depending on how large the image file is...

from photoviewer.

dpakthakur avatar dpakthakur commented on August 18, 2024

I used this as an alternative https://github.com/keensoft/FullScreenImage-Cordova-Plugin/blob/master/README.md

from photoviewer.

cjchrist777 avatar cjchrist777 commented on August 18, 2024

Thanks @idmadj . Thanks what i needed for android.

from photoviewer.

arulyan avatar arulyan commented on August 18, 2024

This Code Works for Me!

this.file.readAsDataURL(this.file.applicationDirectory + "www/assets/imgs/", "1.jpg").
then((dataURL:string) => {this.photoViewer.show(dataURL)})

from photoviewer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.