This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/admin/screenshotQueue.php

15 lines
506 B
PHP
Raw Normal View History

<?php
/************************************************/
/* code to show a queued image */
/************************************************/
include("path.php");
if($info=getimagesize("../data/queued/screenshots/".$_REQUEST['queueId']))
{
header('Content-type: '.$info['mime']);
$handle = fopen("../data/queued/screenshots/".$_REQUEST['queueId'], "rb");
echo fread($handle, filesize("../data/queued/screenshots/".$_REQUEST['queueId']));
fclose($handle);
}
?>