Giter Club home page Giter Club logo

angular-thumbnail's Introduction

Angular Thumbnail

AngularJS thumbnail service to generate blob or base64 data as well as directive to display an image as thumbnail in canvas. Perfect for an Ionic app.

Demo

http://kennyki.github.io/angular-thumbnail

Possible Usage

  1. Generate thumbnail for pictures from gallery/camera to store locally or remotely in PhoneGap/cordova apps. You don't need a plugin for that.
  2. Display thumbnail for pictures from gallery/local db in a list in PhoneGap/cordova apps. Because CSS resizing on many pictures can be very consuming.
  3. Resizing before upload to a server.

Anti-pattern

  1. Generating thumbnails from large images in a desktop web application.
    • first of all, CSS resizing (setting width and height) should be sufficient as most of the desktop will have enough power to do it. But:
    • consider requesting for smaller images from the server.
    • if the images are external you should cache them in your own server and resize them there.

Installation

  1. Install through bower bower install angular-thumbnail or download the package manually.
  2. In your index.html, import:
    1. canvas-to-blob.min.js only if you need to generate blob data
    2. angular-thumbnail.min.js
  3. Add dependency to your module angular.module('', ['ui.thumbnail']);
  4. Enable CORS <access origin="*"/> in the config.xml

API

Configurations

angular.module('', ['ui.thumbnail'])

.config(function(ThumbnailServiceProvider) {
  // otherwise both defaults to 100
  ThumbnailServiceProvider.defaults.width = 150;
  ThumbnailServiceProvider.defaults.height = 150;
})

;

Directive

Hmm.. it's clearer in the demo's source code.

Service

A ThumbnailService dependency can be injected into a controller.

ThumbnailService.generate(src, opts)

  • Parameters:

    • src: either a url or base64 string
    • opts: an optional object of
      • width: number (defaults to 100)
      • height: number (defaults to 100)
      • returnType: 'blob' (defaults to 'base64')
      • type: 'image/jpeg' (defaults to 'image/png')
      • noDistortion: boolean. If true, the image will not get distorted. (defaults to false)
      • encoderOptions: A number between 0 and 1 indicating image quality if the requested type is 'image/jpeg' or 'image/webp'.
  • Returns: a promise that resolves with a base64 string or blob

angular-thumbnail's People

Contributors

kennyki avatar vmvini avatar wsbrunson avatar

Watchers

 avatar  avatar

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.