Perhaps some of you readers that have been around for a while remember our add-ons launch 2 years back, when we introduced a number of third party image processing products, fully integrated into the Cloudinary image management pipeline. Since then our add-ons marketplace has grown, both in our offerings and in usage. We now have 11 add-ons offering various capabilities and improvements.
I decided to take a peek and see which of our add-ons are most frequently used and popular amongst our customers.
Advanced Facial Attribute Detection
Firstly, we have our Advanced Facial Attribute Detection add-on. The ‘Face API' of Microsoft's Cognitive Services allows you to accurately and automatically detect eyes, nose and other facial attributes in your photos. An in depth blog post describing this powerful add-on is coming up in the next couple of weeks, so stay tuned :)
For example:
cl_image_tag("cloudinary_team.jpg", :transformation=>[ {:overlay=>"santa_hat", :effect=>"trim"}, {:gravity=>"north_east", :width=>1.0, :height=>2.3, :crop=>"lpad"}, {:gravity=>"adv_eyes", :flags=>["region_relative", "layer_apply"], :width=>2.6, :crop=>"scale"}, {:width=>500, :crop=>"scale"} ])
cl_image_tag("cloudinary_team.jpg", array("transformation"=>array( array("overlay"=>"santa_hat", "effect"=>"trim"), array("gravity"=>"north_east", "width"=>"1.0", "height"=>"2.3", "crop"=>"lpad"), array("gravity"=>"adv_eyes", "flags"=>array("region_relative", "layer_apply"), "width"=>"2.6", "crop"=>"scale"), array("width"=>500, "crop"=>"scale") )))
(new ImageTag('cloudinary_team.jpg')) ->overlay( Overlay::source(Source::image('santa_hat') ->transformation((new ImageTransformation()) ->reshape(Reshape::trim()) ->resize(Resize::limitPad()->width(1.0)->height(2.3)->gravity(Gravity::compass(Compass::northEast()))) ->resize(Resize::scale()->width(Expression::expression(2.6)) ->regionRelative()))) ->position((new Position()) ->gravity(Gravity::focusOn(FocusOn::advancedEyes())))) ->resize(Resize::scale()->width(500));
CloudinaryImage("cloudinary_team.jpg").image(transformation=[ {'overlay': "santa_hat", 'effect': "trim"}, {'gravity': "north_east", 'width': "1.0", 'height': "2.3", 'crop': "lpad"}, {'gravity': "adv_eyes", 'flags': ["region_relative", "layer_apply"], 'width': "2.6", 'crop': "scale"}, {'width': 500, 'crop': "scale"} ])
cloudinary.image("cloudinary_team.jpg", {transformation: [ {overlay: "santa_hat", effect: "trim"}, {gravity: "north_east", width: "1.0", height: "2.3", crop: "lpad"}, {gravity: "adv_eyes", flags: ["region_relative", "layer_apply"], width: "2.6", crop: "scale"}, {width: 500, crop: "scale"} ]})
cloudinary.url().transformation(new Transformation() .overlay(new Layer().publicId("santa_hat")).effect("trim").chain() .gravity("north_east").width(1.0).height(2.3).crop("lpad").chain() .gravity("adv_eyes").flags("region_relative", "layer_apply").width(2.6).crop("scale").chain() .width(500).crop("scale")).imageTag("cloudinary_team.jpg");
cloudinary.imageTag('cloudinary_team.jpg', {transformation: [ {overlay: new cloudinary.Layer().publicId("santa_hat"), effect: "trim"}, {gravity: "north_east", width: "1.0", height: "2.3", crop: "lpad"}, {gravity: "adv_eyes", flags: ["region_relative", "layer_apply"], width: "2.6", crop: "scale"}, {width: 500, crop: "scale"} ]}).toHtml();
$.cloudinary.image("cloudinary_team.jpg", {transformation: [ {overlay: new cloudinary.Layer().publicId("santa_hat"), effect: "trim"}, {gravity: "north_east", width: "1.0", height: "2.3", crop: "lpad"}, {gravity: "adv_eyes", flags: ["region_relative", "layer_apply"], width: "2.6", crop: "scale"}, {width: 500, crop: "scale"} ]})
<Image publicId="cloudinary_team.jpg" > <Transformation overlay="santa_hat" effect="trim" /> <Transformation gravity="north_east" width="1.0" height="2.3" crop="lpad" /> <Transformation gravity="adv_eyes" flags={["region_relative", "layer_apply"]} width="2.6" crop="scale" /> <Transformation width="500" crop="scale" /> </Image>
<cld-image publicId="cloudinary_team.jpg" > <cld-transformation :overlay="santa_hat" effect="trim" /> <cld-transformation gravity="north_east" width="1.0" height="2.3" crop="lpad" /> <cld-transformation gravity="adv_eyes" flags={["region_relative", "layer_apply"]} width="2.6" crop="scale" /> <cld-transformation width="500" crop="scale" /> </cld-image>
<cl-image public-id="cloudinary_team.jpg" > <cl-transformation overlay="santa_hat" effect="trim"> </cl-transformation> <cl-transformation gravity="north_east" width="1.0" height="2.3" crop="lpad"> </cl-transformation> <cl-transformation gravity="adv_eyes" flags={{["region_relative", "layer_apply"]}} width="2.6" crop="scale"> </cl-transformation> <cl-transformation width="500" crop="scale"> </cl-transformation> </cl-image>
cloudinary.Api.UrlImgUp.Transform(new Transformation() .Overlay(new Layer().PublicId("santa_hat")).Effect("trim").Chain() .Gravity("north_east").Width(1.0).Height(2.3).Crop("lpad").Chain() .Gravity("adv_eyes").Flags("region_relative", "layer_apply").Width(2.6).Crop("scale").Chain() .Width(500).Crop("scale")).BuildImageTag("cloudinary_team.jpg")
MediaManager.get().url().transformation(new Transformation() .overlay(new Layer().publicId("santa_hat")).effect("trim").chain() .gravity("north_east").width(1.0).height(2.3).crop("lpad").chain() .gravity("adv_eyes").flags("region_relative", "layer_apply").width(2.6).crop("scale").chain() .width(500).crop("scale")).generate("cloudinary_team.jpg");
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation() .setOverlay("santa_hat").setEffect("trim").chain() .setGravity("north_east").setWidth(1.0).setHeight(2.3).setCrop("lpad").chain() .setGravity("adv_eyes").setFlags("region_relative", "layer_apply").setWidth(2.6).setCrop("scale").chain() .setWidth(500).setCrop("scale")).generate("cloudinary_team.jpg")!, cloudinary: cloudinary)
JPEGmini
Our second most popular add-on, the JPEGmini image optimization add-on, is an add-on that helps reduce the file size of your photos by up to 5x, while keeping their original quality and JPEG format. Any Cloudinary image manipulation can be chained as well of course. When using the JPEGmini add-on, your images will be automatically optimized using advanced visual algorithms achieving maximum file size reduction while maintaining a very high visual quality. This seems like a no-brainer to me - who wouldn’t want their images automatically optimized in such a manner?? You can also read more about this add-on in this blog post.
For example:
Imagga crop & scale
Imagga's crop & scale smart cropping technology automatically chooses the most visually appealing parts of your images and crops them accordingly, extending Cloudinary's powerful cropping capabilities with automatic cropping that is not only based on detected faces. When using the Imagga add-on, your images will be scaled and cropped based on automatically calculated areas of interest within each specific photo. This add-on was also described in this blog post.
For example:
Imagga auto tagging
The Imagga auto tagging add-on automatically categorizes and tags images, according to the categories detected in each image. The Imagga add-on can automatically tell you what's in a photo by returning a list of detected categories and the confidence score for each of them. User uploaded images can now be fully categorized automatically! You can read more about it in this great blog post.
Other cool add-ons
Although the add-ons described above are statistically of the highest usage amongst our customers, there are a few more that are so useful and cool, I had to highlight them as well:
VIESUS image enhancement
The VIESUS image enhancement add-on does just that, enhancing the visual quality of your photos, automatically adjusting brightness and color, restoring sharpness, removing noise and correcting for overexposure or underexposure. We speak in length about it here.
For example:
WebPurify
WebPurify image moderation comes in handy in various user generated content sites, by automatically moderating all photos uploaded to your application, thus preventing adult-oriented and inappropriate images from creeping into your websites or mobile applications. Custom moderation profiles can also be defined with our assistance, making sure that whatever images you don’t want appearing on your website - will be automatically screened out. You can read more about this add-on here.
Remove The Background
Remove The Background editing add-on automatically removes any background from your photos, resulting in a transparent-background image focusing only on the main object within your photo. This is especially common in e-commerce, media, and news sites in order to place the main element of the image on either white or color backgrounds. The final result better integrates an image into a site or specific page’s graphic design. This blog post describes this add-on in detail.
Which add-ons are your favorite? Are there any additional add-ons you wish we had? We would love to get your feedback and thoughts!