自动调整图像的Php代码

时间:2014-02-23 08:40:10

标签: javascript php image thumbnails

我正在使用PHP代码制作缩略图并使其适合。我附上了我想要的照片。我使用的脚本是拉伸图像。这些脚本不适合图像宽度和高度明智。

任何人都可以帮我解决这个问题。 enter image description here

1 个答案:

答案 0 :(得分:0)

我不知道您的代码有什么问题,因为您还没有发布它,但这是一个方便的功能,我用来创建缩略图

function make_thumb($src, $dest, $desired_width) {

    /* read the source image */
    $source_image = imagecreatefromjpeg($src);
    $width = imagesx($source_image);
    $height = imagesy($source_image);

    /* find the "desired height" of this thumbnail, relative to the desired width  */
    $desired_height = floor($height * ($desired_width / $width));

    /* create a new, "virtual" image */
    $virtual_image = imagecreatetruecolor($desired_width, $desired_height);

    /* copy source image at a resized size */
    imagecopyresampled($virtual_image, $source_image, 0, 0, 0, 0, $desired_width, $desired_height, $width, $height);

    /* create the physical thumbnail image to its destination */
    imagejpeg($virtual_image, $dest);
}

$ src:您的图片的网址
$ des:您想要缩略图的位置 $ width:缩略图的宽度为

This code is from here