angular2-cloudtasks

Allows you to serve highly optimized images to your client apps.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
angular2-cloudtasks
61470.0.207 years ago8 years agoMinified + gzip package size for angular2-cloudtasks in KB

Readme

npm version Build Status Codacy Badge Coverage Status devDependency Status
Github Releases()
Allows you to serve highly optimized images to your client apps.
angular-cloudtasks helps using Cloudtasks.io image processing task by substituting your images sources with the processing URL.
With this you can process your images on the fly applying resize, trim, and even filters to your images. In the end you will save a lot of bandwidth for you and your users as well as improve the overall user experience.
You will need a Cloudtasks.io account to be able to use this module;

Installation

First you need to install the npm module:
npm install angular2-cloudtasks --save

If you use SystemJS to load your files, you might have to update your config with this if you don't use defaultJSExtensions: true:
System.config({
	packages: {
		"angular2-cloudtasks": {"defaultExtension": "js"}
	}
});

Finally, you can use angular2-cloudtasks in your Angular 2 project. It is recommended to instantiate CloudtasksService in the bootstrap of your application and to never add it to the "providers" property of your components, this way you will keep it as a singleton. If you add it to the "providers" property of a component it will instantiate a new instance of the service that won't be initialized.
// component
import { Component } from '@angular/core';
import { CloudtasksService } from 'angular2-cloudtasks';

@Component({
	selector: 'app',
	template: `<img [ctSrc]="'http://example.com/image.jpg'" [ctOptions]="{trim: true, smart: 'face', filters: 'blur(10):flip()'}">`
})
export class AppComponent {
	constructor(private cloudtasks: CloudtasksService) {
		// Required: set your cloudtasks.io client id
		cloudtasks.setId('YOUR_CLIENT_ID');

		// Optional: set global options
		cloudtasks.settings.options = {
			trim: false
		}
		// Optional: set global settings
		cloudtasks.settings.placeholderImage = "http://example.com/placeholderImage.jpg";
	}
}

// bootstrap
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { CloudtasksModule } from 'angular2-cloudtasks';

@NgModule({
  imports: [
  	BrowserModule,
  	CloudtasksModule
  ],
  declarations: [ AppComponent ], 
  bootstrap: [ AppComponent ]
})

API

CloudtasksService

Settings:

  • clientId: (string) Cloudtasks.io client id
  • dev: (boolean) Set environment to dev (default: false)
  • options: (object) Global options for image processing (Docs)
  • photoWidths: (array) Array of 'Ints' to be used for width approximation calculation
  • photoHeights: (array) Array of 'Ints' to be used for height approximation calculation
  • placeholderImage: (string) Set global placeholder image url to be used while waiting for original image (default: '')

Methods:

  • setId(id: string): Sets the client id
  • getSettings(): Gets the settings

CloudtasksDirective

  • ctSrc: (string) (required) Sets original image url
  • ctOptions: (object) (optional) Sets options for image processing (Docs)
  • ctPlaceholderImage: (string) (optional) Sets placeholder image url to be used while waiting for original image
  • ctSize: (string) (optional) Sets size for image processing (if not set we will try to check the best size automatically)
  • ctForceSize: (boolean) (optional) Forces the exact size for image processing

Example:
<img [ctSrc]="'{{imgUrl}}'" ctSize="800x600" [ctOptions]="{trim: true, smart: 'face', filters: 'blur(10):flip()'}" ctPlaceholderImage="http://example.com/placeholderImage.jpg" ctForceSize="true">

License

(The MIT License)
Copyright (c) 2015 Reality Connect
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.