我使用的是Laravel 5.2。我几乎完成了运行正常的图像的大小调整。但我面临一个问题当我上传300 dpi的图像时,它将dpi降低到96 dpi。我不知道我做错了什么。我正在使用laravel5.2的干预套餐。到目前为止我在这里做了: -
// Input::file('image') -> upload file having dpi of 300
$height = 6048; //upload image height
$width = 4032; //upload image width
xxlheight = ($height*60)/100;
$xxlwidth = ($width*60)/100;
$xxlFileName = str_random(4)."xxl".str_random(4).".".$extension;
Image::make(Input::file('image'))->resize($xxlwidth,$xxlheight)->save(storage_path('app/images/secureRealImages/'.$xxlFileName));
$getxxlimage = Image::make(storage_path('app/images/secureRealImages/'.$xxlFileName));
请帮助我做错了什么。在此先感谢:)