Simple test for new thumbnail generation before integration

This commit is contained in:
alopexc0de 2013-02-18 19:06:36 -05:00
parent 1a6bb8501a
commit e9d7968a5a
1 changed files with 13 additions and 0 deletions

13
img/thumb.php Normal file
View File

@ -0,0 +1,13 @@
<?php
// Test of thumbnail generation - Temporarly dropped support for bitmap files until I learn how to generate those
require('helper.genthumb.php');
genthumb('2pojdry.jpg');
genthumb('3gyvry5.gif');
genthumb('meow.png');
echo '<img src="thumbs/2pojdry.jpg"><br>';
echo '<img src="thumbs/3gyvry5.gif"><br>';
echo '<img src="thumbs/meow.png"><br>';
?>