clipbucket/upload/api/thumb-sample.php

10 lines
171 B
PHP
Raw Normal View History

2012-08-02 19:34:51 +00:00
<?php
include('../includes/config.inc.php');
sleep(2);
$file = THUMBS_DIR.'/default.jpg';
header("Content-type: image/jpeg");
echo file_get_contents($file);
?>