输出图像始终为 PNG,croppie 不保持原始格式。
我使用croppie库我想获得原始图像扩展名,但我得到了jpeg或png。
vanilla.result({
type: 'base64',
format: 'jpeg',
size: 'original'
}).then(function (resp) {
$('.cr-boundary').hide();
$('.cr-slider-wrap').hide();
$('#hidden_image_input').val(resp);
$('#profile_image').attr('src', resp);
$('#profile_image').show();
});