如何使用 cloudinary 和 nodejs 创建 "progressive jpg" 图像?
How can a create a "progressive jpg" image using cloudinary and nodejs?
我需要创建一个图像,调整大小+水化+应该是渐进的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}
});
}
已成功添加水印和调整大小,需要有关渐进式标签的帮助,如何在同一转换中添加它?
您应该将 flags
参数设置为 progressive
。想要查询更多的信息:
http://cloudinary.com/documentation/image_transformations#flags_parameter
我需要创建一个图像,调整大小+水化+应该是渐进的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}
});
}
已成功添加水印和调整大小,需要有关渐进式标签的帮助,如何在同一转换中添加它?
您应该将 flags
参数设置为 progressive
。想要查询更多的信息:
http://cloudinary.com/documentation/image_transformations#flags_parameter