我有一张长宽比为9x16(337像素,600像素)的图像。我想永久更改图像16x9(1066px,600px),而无需使用PHP裁剪图像 这是我想要before和after的示例。 对不起,我还没有编码,因为我不知道我应该在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);