Cloudinary Add-ons
Cloudinary takes care of your entire image management pipeline. With Cloudinary Add-ons, you can enhance your images even further with powerful functionality.Currently available Cloudinary Add-ons:
Have a service that Cloudinary's customers would enjoy? Contact us!- Imagga Crop and Scale
- URL2PNG Website Screenshots
- JPEGmini Image Optimization
- WebPurify Image Moderation
- Advanced Facial Attributes Detection
- Aspose Document Conversion
- Remove-The-Background Editing
- VIESUS™ Image Enhancement
- Imagga Auto Tagging
- OCR Text Detection and Extraction
- Plan Monthly Croppings Monthly Price
- Free 50 Free
- Bronze 5K $10
- Silver 20K $50
- Gold 50K $150
- Titanium 200K $400
Imagga's smart cropping technology automatically chooses the most visually appealing parts of your images and crop them accordingly. A great addition to Cloudinary's face detection based cropping. Any Cloudinary's image manipulation can be applied on the cropped images.
For example, embedding a 260x240 smartly cropped image:
cl_image_tag("sample_van.jpg", :crop => "imagga_scale", :width => 260, :height => 240)
Same example as a dynamic URL:
Read more...- Plan Monthly Screenshots Monthly Price
- Free 50 Free
- Bronze 1K $6
- Silver 5K $30
- Gold 15K $75
- Titanium 50K $200
Capture screenshots of any public web page using URL2PNG. Further manipulate your screenshots with any of Cloudinary's image transformations to perfectly match your website's graphic design. Embed on-the-fly generated images in your site, delivered through a fast CDN.
For example, embedding a 300x225 screenshot image:
cl_image_tag("http://cnn.com/", :type => 'url2png', :width => 300, :height => 225, :crop => :fill, :radius => 10)
Same example as a dynamic URL:
Read more...- Plan Monthly Compressions Monthly Price
- Free 100 Free
- Bronze 8K $60
- Silver 20K $100
- Gold 70K $200
- Titanium 200K $400
Reduce the file size of your photos by up to 5x using JPEGmini, while keeping their original quality and JPEG format. Any Cloudinary image manipulation can be chained as well, while the generated optimized images are cached and delivered through a fast CDN.
For example, delivering a 300x200 minified JPG image:
cl_image_tag("sample.jpg", :quality => "jpegmini" :width => 300, :height => 200, :crop => 'fill')
Same example as a dynamic URL:
Read more...- Plan Monthly Moderations Monthly Price
- Free 50 Free
- Bronze 500 $10
- Silver 2.5K $50
- Gold 7.5K $150
- Titanium 20K $400
Automatically moderate all photos uploaded to your application using WebPurify. Prevent adult-oriented and inappropriate images from creeping into your websites or mobile applications. Use Cloudinary's upload and delivery APIs knowing that human moderation experts approved your images for user viewing.
For example, uploading an image that should be moderated by WebPurify:
Cloudinary::Uploader.upload("user_image.jpg", :moderation => 'webpurify', :notification_url => 'http://mysite/mycallback')
- Plan Monthly Detections Monthly Price
- Free 50 Free
- Bronze 5K $10
- Silver 20.5K $50
- Gold 70.5K $150
- Titanium 200K $400
Automatically detect eyes, nose and other facial attributes in your photos using Advanced Facial Attribute Detection utilizing Microsoft's Project Oxford. Detect gender, age and other semantic face details and combine them with Cloudinary's image manipulation capabilities to smartly crop images and place overlays over detected faces and eyes.
For example, adding overlays of glasses, automatically positioned, scaled and rotated:
cl_image_tag("coupled.jpg", :overlay => "glasses", :width => 1.7, :flags => 'region_relative', :gravity => 'adv_eyes')
Same example as a dynamic URL:
Read more...- Plan Monthly Conversions Monthly Price
- Free 50 Free
- Bronze 120 $10
- Silver 700 $50
- Gold 2.2K $150
- Titanium 10K $400
Automatically convert Word, Excel and PowerPoint Office documents to PDF or any image format using Aspose. Generated images can be further processed by Cloudinary to create thumbnails of any page in the document. Manipulate your thumbnails to perfectly match your graphic design.
For example, uploading a Word document and converting to it PDF:
Cloudinary::Uploader.upload("my_file_name.docx", :public_id => "sample_document.docx", :resource_type => 'raw', :raw_convert => 'aspose')
A JPG thumbnail of the document can now be generated and delivered via a CDN:
Read more...- Plan Monthly Edits Monthly Price
- Free 3 Free
- Bronze 30 $45
- Silver 100 $150
- Gold 300 $450
- Titanium 600 $900
Remove the background from your photos, focus only on their main subjects and improve your conversion rates. Remove-The-Background employs expert graphic designers to quickly edit your photos to perfection.
The original images will be automatically replaced with their background removed versions as soon as their editing is finished.
Cloudinary will handle all the additional editing, optimizations and delivery of the resulting images.
For example, uploading an image to the cloud while scheduling background removal:
Cloudinary::Uploader.upload("wood_chair.jpg", :background_removal => 'remove_the_background')
- Plan Monthly Enhancements Monthly Price
- Free 50 Free
- Bronze 1K $10
- Silver 6K $50
- Gold 25K $150
- Titanium 90K $400
With VIESUS™ image enhancement add-on, you can extend Cloudinary's powerful image manipulation and optimization capabilities by enhancing images to their best visual quality and automatically adjusting brightness and color, restoring sharpness, removing noise and correcting for overexposure or underexposure.
For example, embedding a 300px wide visually enhanced image:
cl_image_tag("beach.jpg", :effect => "viesus_correct", :width => 300, :crop => :scale)
Same example as a dynamic URL:
Read more...- Plan Monthly Categorizations Monthly Price
- Free 50 Free
- Bronze 5K $10
- Silver 20K $50
- Gold 50K $150
- Titanium 200K $400
Automatically categorize and tag images using the Imagga Auto Tagging add-on. Scene categories are identified and assigned to uploaded images, and then Cloudinary automatically adds tags based on these categories.
For example, uploading an image with categorization and automatic tagging:
Cloudinary::Uploader.upload("turtles.jpg", :categorization => "imagga_tagging", :auto_tagging => 0.4)
The result includes all automatically detected categories and the assigned tags of high confidence level:
"tags": [ "sea turtle", "loggerhead", "turtle" ], ... "data": [ { "tag": "sea turtle", "confidence": 1.0 }, { "tag": "loggerhead", "confidence": 1.0 }, { "tag": "turtle", "confidence": 0.8903 }, ...
- Plan Monthly OCR Detections Monthly Price
- Free 50 Free
- Bronze 5K $10
- Silver 25K $50
- Gold 90K $150
- Titanium 250K $400
Apply transformations to text detected in your images using the OCR Text Detection and Extraction Add-on (powered by the Google Vision API). Pixelate, blur or cover phone numbers, email addresses, license plates, and other undesired data. And of-course you can extract the detected text content and coordinates from any image, including multi-page documents like TIFFs and PDFs.
For example, pixelating the numbers and letters on a license plate:
cl_image_tag("black_car.jpg", :effect=>"pixelate_region:15", :gravity=>"ocr_text")
Same example as a dynamic URL:
Read more...