npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

com.outsystems.imageeditorplugin

v1.0.1

Published

A plugin to edit images in android and ios

Downloads

3

Readme

image-editor-plugin

This plugin defines a window.imageeditorplugin object, which supplies an interface to take pictures with the camera, get a picture from the gallery or use a base64 string, allowing the user to crop that picture, add text, emojis, stickets and share that picture. The edited image is then exported as base64, ready to be saved to a database.

Available features

  • Crop an image
  • Add emojis
  • Draw lines with a wide range of colors
  • Add stickers (android only)
  • Add text with a wide range of colors
  • Share that image with anyone

Installation

cordova plugin add https://github.com/agoncalvesos/image-editor-plugin.git

editImageFromBase64

Opens the image editor main screen, allowing the user to use all the features, on the base64 passed as input parameter

window.imageeditorplugin.editImageFromBase64(base64, onSuccess, onError);

editImageFromCamera

Opens the phone camera allowing the user to take a photo and edit it right away

window.imageeditorplugin.editImageFromCamera(onSuccess, onError);

editImageFromGallery

Opens the phone gallery allowing the user to choose a photo and edit it right away

window.imageeditorplugin.editImageFromGallery(onSuccess, onError);

Description

This cordova plugin was created to be used inside an OutSystems plugin, and allows the user to edit an image. Functions editImageFromBase64, editImageFromCamera and editImageFromGallery return a base64 string that can be saved in a database or shown to the user

Supported Platforms

  • Android 4.0 +
  • iOS 9.0 +

Example

Create a button on your page

<button id="testeditorbase64">edit base64 image</button>
<button id="testeditorcamera">edit from camera</button>
<button id="testeditorgallery">edit from gallery</button>
<img id="base64image" height="400" width="600" src="data:image/jpeg,/base64string..."/>

Then add click event

document.getElementById(“testeditorbase64”).addEventListener(“click”, function(){
   imageeditorplugin.editImageFromBase64(document.getElementById(“base64image”).src, function(base64){
       document.getElementById(“base64image”).src = “data:image;base64,” + base64;
   },onFail);
});
document.getElementById(“testeditorcamera”).addEventListener(“click”, function(){
   imageeditorplugin.editImageFromCamera(function(base64){
       document.getElementById(“base64image”).src = “data:image;base64,” + base64;
   },onFail)
});
document.getElementById(“testeditorgallery”).addEventListener(“click”, function(){
   imageeditorplugin.editImageFromGallery(function(base64){
       document.getElementById(“base64image”).src = “data:image;base64,” + base64;
   },onFail)
});

function onFail(message) {
      console.log('plugin message: ' + message);
}

Credits

Thanks to eventtus for the native source code for ios and android, available here: https://github.com/eventtus/photo-editor https://github.com/eventtus/photo-editor-android