嗨,目前我已经建立了从图像创建缩略图的功能,但它确实如此,但我希望它是一个圆形缩略图而不是一个矩形,如何在不使用任何外部库的情况下实现这一点,只需使用php内置的方法?谢谢
function createThumb( $imagepath, $thumbFile, $thumbWidth )
{
// load image and get image size
$img = imagecreatefromjpeg( "$imagepath" );
$width = imagesx( $img );
$height = imagesy( $img );
// calculate thumbnail size
$new_width = $thumbWidth;
$new_height = floor( $height * ( $thumbWidth / $width ) );
// create a new temporary image
$tmp_img = imagecreatetruecolor( $new_width, $new_height );
// copy and resize old image into new image
imagecopyresized( $tmp_img, $img, 0, 0, 0, 0,
$new_width, $new_height, $width, $height );
// save thumbnail into a file in the temp directory below script or somewhere
imagejpeg( $tmp_img, $thumbFile );
}
答案 0 :(得分:0)
CSS实际上是一种更好的方法。
.class-name {
border-radius : 30px;
}