如何在PHP中使用不同的名称保存相同的图像?

时间:2018-01-24 17:12:09

标签: php thumbnails

我编写了一个从.jpg图像创建缩略图的功能。但我想要做的是每当调用函数时,同一图像应保存为1.jpg,2.jpg,3.jpg在同一目的地。

我使用了Sessions和静态变量概念,但没有成功。

这是我的代码。 这是thumbsave.php文件

<?php
session_start();
$_SESSION['sid']=$k=1;
function createThumb($fpath)//fpath will be passed here as parameter.
{
$ims = imagecreatefromjpeg($fpath);
$imd = imagecreatetruecolor(100, 100);

imagecopyresized($imd, $ims, 0, 0, 0, 0, 100, 100, imagesx($ims), 
imagesy($ims));
imagejpeg($imd,"saveimages/" . $_SESSION['sid'] . ".jpg");
$_SESSION['sid'] = $_SESSION['sid'] + 1;
imagedestroy($ims);
imagedestroy($imd);

echo "Thumbnail Created and Saved at the Destination";

}

?>

这是我的dynamicthumb.php代码

<?php
include("include/thumbsave.php");
createThumb("imgs/m1.jpeg");
 ?>

因此,当我运行dynamicthumb.php文件时,存储在imgs文件夹中的图像必须存储在saveimages文件夹中。但这里只保存了1张图像,而不是像2.jpg,3.jpg那样生成多份副本。

2 个答案:

答案 0 :(得分:0)

这是负责将图像保存到文件的行:

imagejpeg($imd,"saveimages/" . $_SESSION['sid'] . ".jpg");

您可以将其更新为使用$fpath代替$_SESSION['sid']

imagejpeg($imd, $fpath);

但要注意,您的路径应以 .jpg 结尾。

答案 1 :(得分:0)

如果您肯定缩略图的名称将始终为数字,则可以使用file_exists循环:

function createThumb($fpath)
{
    $ims = imagecreatefromjpeg($fpath);
    $imd = imagecreatetruecolor(100, 100);

    imagecopyresized($imd, $ims, 0, 0, 0, 0, 100, 100, imagesx($ims), imagesy($ims));

    $thumb = 1;
    while ( file_exists('saveimages/'. $thumb .'.jpg') ) { $thumb++; }

    imagejpeg($imd,'saveimages/'. $thumb .'.jpg');
    imagedestroy($ims);
    imagedestroy($imd);

    echo 'Thumbnail Created and Saved at the Destination as '. $thumb .'.jpg';
}

但是我质疑你要求的逻辑......因为这表明你创建的每个缩略图都只是一个序列号,都存储在同一个目录中?

使用counter数据库字段或文件可能会更好运,因为对数千且不断增长的文件夹执行file_exists可能会影响性能。

因此,基于文件的counter解决方案可能是:

function createThumb($fpath)
{
    $ims = imagecreatefromjpeg($fpath);
    $imd = imagecreatetruecolor(100, 100);

    imagecopyresized($imd, $ims, 0, 0, 0, 0, 100, 100, imagesx($ims), imagesy($ims));

    $thumb  = file_get_contents('saveimages/thumbcount.txt');
    $thumb++; file_put_contents('saveimages/thumbcount.txt',$thumb);

    imagejpeg($imd,'saveimages/'. $thumb .'.jpg');
    imagedestroy($ims);
    imagedestroy($imd);

    echo 'Thumbnail Created and Saved at the Destination as '. $thumb .'.jpg';
}

请务必使用thumbcount.txt填充1,以便开始使用。