我已经使用以下配置在我的应用程序中实现了croppie js。
var uploadconfig = {
imgw: "360",
imgh: "240",
type:"square",
upid:"id_upload",
displaydiv:"imgupdiv",
act:"saveimage",
imgsize:"large"
};
$uploadCrop = $('#shoimgupload-demo').croppie({
enableExif: true,
viewport: {
width: uploadconfig.imgw,
height: uploadconfig.imgh,
type: uploadconfig.type
},
boundary: {
width: 500,
height: 400
}
});
但在上传图像后,最终图像会被调整为更大的尺寸。假设我上传了大小为 9kb 的 png 图像,成功上传后它会转换为 60kb。
我在几篇文章中读到调整质量参数可以控制图像的质量和大小,但没有发生任何变化。谁可以帮我这个事?
或者任何知道图像调整大小比例的人都会受到赞赏。