使图像与宽高比匹配而不裁剪

时间:2019-02-12 17:17:41

标签: php

我有一张长宽比为9x16(337像素,600像素)的图像。我想永久更改图像16x9(1066px,600px),而无需使用PHP裁剪图像 这是我想要beforeafter的示例。 对不起,我还没有编码,因为我不知道我应该在Google上键入什么内容

$imagemal = "https://myanimelist.cdn-dena.com/images/anime/1933/97061l.jpg";
list($width, $height, $type, $attr) = getimagesize("$imagemal");
$newwidth = $height/9;
$newwidth = $newwidth*16;
$newwidth = round($newwidth);

0 个答案:

没有答案