Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline.
Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software. Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements. Images are seamlessly delivered through a fast CDN, and much much more.
Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with any web application, existing or new.
Cloudinary provides URL and HTTP based APIs that can be easily integrated with any Web development framework.
For AngularJS, Cloudinary provides a plugin for simplifying the integration even further. The plugin serves as a layer on top the Cloudinary jQuery plugin
You can get it on bower.
bower install cloudinary_ng --save
Follow the setup procedure described in the Cloudinary jQuery plugin setup procedure. The sample project contained in this repository can serve as an example.
The plugin provides two angular directives. URL directive and image tag directive.
Similarly to the above this directive will generate an image tag with requested transformation, type, and format. The image tag can contain transformation tags that will be used as piped transformations:
<cl-image public-id="{some_public_id}" class="thumbnail inline" angle="20" format="jpg">
<cl-transformation height="150" width="150" crop="fill" gravity="north" effect="sepia" radius="20"/>
</cl-image>
Will be translated to:
<img ng-transclude="" public-id="{some_public_id}" class="thumbnail inline ng-isolate-scope" angle="20" format="jpg"
src="http://res.cloudinary.com/{your cloud name}/image/upload/c_fill,e_sepia,g_north,h_150,r_20,w_150/a_20/{some_public_id}.jpg"></img>
For a complete list of image manipulation options see this reference.
These directives transform the given URI to a cloudinary URL. For example:
<link rel="shortcut icon" cl-href="{publicly_available_image}" type="fetch" effect="sepia" width="16" height="16" crop="fit"/>
Will be transformed to:
<link rel="shortcut icon" cl-href="{publicly_available_image}" type="fetch" effect="sepia" width="16" height="16" crop="fit"
href ="http://res.cloudinary.com/{your cloud name}/image/fetch/c_fit,e_sepia,h_16,w_16/{publicly_available_image}">
You can upload images directly from the browser using Cloudinary's jQuery plugin from your AngularJS app. See the sample photo album app for a usage example.
You can find our simple and ready-to-use samples projects, along with documentation in the samples folder. Please consult with the README file, for usage and explanations.
Additional resources are available at:
- Website
- Documentation
- Knowledge Base
- Documentation for jQuery integration
- Image upload documentation
- Image transformations documentation
You can open an issue through GitHub.
Contact us http://cloudinary.com/contact
Stay tuned for updates, tips and tutorials: Blog, Twitter, Facebook.
Released under the MIT license.