-
Notifications
You must be signed in to change notification settings - Fork 0
/
article_image.php
48 lines (38 loc) · 1.39 KB
/
article_image.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
// $Header: /cvsroot-fuse/tikiwiki/tiki/article_image.php,v 1.9.2.7 2005/06/17 09:21:45 michael_davey Exp $
// Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
# $Header: /cvsroot-fuse/tikiwiki/tiki/article_image.php,v 1.9.2.7 2005/06/17 09:21:45 michael_davey Exp $
// application to display an image from the database with
// option to resize the image dynamically creating a thumbnail on the fly.
if (!isset($_REQUEST["id"])) {
die;
}
include_once ('lib/init/initlib.php');
include_once ('tiki-setup_base.php');
$topiccachefile = "temp";
if ($tikidomain) { $topiccachefile.= "/$tikidomain"; }
$topiccachefile.= "/article.".$_REQUEST["id"];
if (is_file($topiccachefile) and (!isset($_REQUEST["reload"]))) {
$size = getimagesize($topiccachefile);
header ("Content-type: ".$size['mime']); /* do not backport to 1.8 */
readfile($topiccachefile);
die();
} else {
$data = $tikilib->get_article_image($_REQUEST["id"]);
$type = $data["image_type"];
$data = $data["image_data"];
if ($data["image_data"]) {
$fp = fopen($topiccachefile,"wb");
fputs($fp,$data);
fclose($fp);
}
}
header ("Content-type: $type");
if (is_file($topiccachefile)) {
readfile($topiccachefile);
} else {
echo $data;
}
?>