Answers for "Cloudinary image Transformation in Java"

0

Cloudinary image Transformation in Java

cloudinary.url().transformation(new Transformation()
  .width(150).height(150).gravity("face").crop("thumb").chain()
  .radius(20).chain()
  .effect("sepia").chain()
  .overlay(new Layer().publicId("cloudinary_icon_blue")).gravity("south_east").x(5).y(5).width(50).opacity(60).effect("brightness:200").chain()
  .angle(10)).secure(true).imageTag("front_face.png");
Posted by: Guest on September-04-2021

Code answers related to "Cloudinary image Transformation in Java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language