Given a large set of unordered images in the format either jpg or png, I wanted to create a PHP script that would firstly filter all folder contents for the allowed formats, copy them to a new folder renamed in numerical order (1.jpg, 2.jpg, 3.jpg ..), create a 50x50 thumbnail of each image in a child folder "thumbs" and then create an .html file called "gallery" which contains a dump of "img" tags of each thumbnail.
It works fine up until a dozen or so images and then exceeds the maximum allocatable memory. This has suddenly happened and appears when the function imagecopyresized is called.
Any advice is appreciated.
Source:
<?php
# Prepare vars
$dir = "O:/zip/";
$newDir = "C:/Users/user/Desktop/zip/";
$thumbs = $newDir."thumbs/";
$gallery = $newDir."gallery.html";
$types = array(".jpg", ".png");
$files = array();
$tempFiles = scandir($dir);
$i = 0;
# Copy and rename images
foreach($tempFiles as $file)
{
$thisType = substr($file,-4);
if(in_array($thisType, $types))
{
$dest = fopen($newDir.$i.$thisType, 'w');
fwrite($dest, file_get_contents($dir.$file));
fclose($dest);
list($width, $height) = getimagesize($newDir.$i.$thisType);
$im = imagecreatetruecolor(50, 50);
if($thisType == '.jpg')
{
imagecopyresized($im, imagecreatefromjpeg($newDir.$i.$thisType), 0, 0, 0, 0, 50, 50, $width, $height);
imagejpeg($im, $thumbs.$i.$thisType);
}
else
if($thisType == '.png')
{
imagecopyresized($im, imagecreatefrompng($newDir.$i.$thisType), 0, 0, 0, 0, 50, 50, $width, $height);
imagepng($im, $thumbs.$i.$thisType);
}
imagedestroy($im);
$html .= "<a href='$newDir$i$thisType'><img src='$thumbs$i$thisType' alt='$i$thisType' width='50' height='50'></a>";
print "Successfully processed $i$thisType<br>";
$i++;
}
}
print "Done.<br>";
# Create html gallery for new imgs
$dest = fopen($gallery, 'w');
fwrite($dest, $html);
fclose($dest);
print "There are ".number_format($i)." image files.\n\r";
?>