imagerotate()
在 PHP 中使用旋转图像后如何获取图像的宽度和高度?
这是我的代码:
<?php
// File and rotation
$filename = 'test.jpg';
$degrees = 180;
// Content type
header('Content-type: image/jpeg');
// Load
$source = imagecreatefromjpeg($filename);
// Rotate
$rotate = imagerotate($source, $degrees, 0);
// Output
imagejpeg($rotate);
// Free the memory
imagedestroy($source);
imagedestroy($rotate);
?>
但是在输出之前我想做的是,我想得到旋转图像的宽度和高度。我怎样才能做到这一点?