我需要创建一个图像,调整大小+ watermaked +应该是渐进式jpg图像。
function getProcessImageFromCloudinary(imgUrl, name, format,wid,hei,cb){
cloudinary.uploader.upload(imgUrl, function(result) {
cb(result);
},
{
public_id: name, width:wid, height:hei,format:format,crop:'fit',transformation:{overlay:'watermark', gravity:'south_east',x:5,y:5}
});
}

已成功加水印并调整大小,需要有关渐进式标记的帮助,如何在同一转换中添加此内容?
答案 0 :(得分:0)
您应该将flags
参数设置为progressive
。欲获得更多信息:
http://cloudinary.com/documentation/image_transformations#flags_parameter