Skip to content

Instantly share code, notes, and snippets.

@NTsvetkov
NTsvetkov / makeThumbnails.php
Created May 9, 2021 13:40
Create thumbnails from the pictures of current folder
<?php
function createThumbnail($file)
{
$width = 220;
$height = 220;
$thumbPath = "thumbs/";
list($width_orig, $height_orig, $type) = getimagesize($file);
if (($width_orig > $width) || ($height_orig > $height)) {
if (($width_orig > $width) && ($height_orig > $height)) {