怎样才能创造一个进步的jpg"使用cloudinary和nodejs的图像?

时间:2015-07-17 09:37:23

标签: node.js cloudinary

我需要创建一个图像,调整大小+ 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}
	});

}




已成功加水印并调整大小,需要有关渐进式标记的帮助,如何在同一转换中添加此内容?

1 个答案:

答案 0 :(得分:0)

您应该将flags参数设置为progressive。欲获得更多信息: http://cloudinary.com/documentation/image_transformations#flags_parameter