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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php
/*
Copyright (c) 2001 - 2007 Ampache.org
All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License v2
as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* Album Art
* This pulls album art out of the file using the getid3 library
* and dumps it to the browser as an image mime type.
*
*/
require('lib/init.php');
/* Decide what size this image is */
switch ($_REQUEST['thumb']) {
case '1':
/* This is used by the now_playing stuff */
$size['height'] = '75';
$size['width'] = '75';
break;
case '2':
$size['height'] = '128';
$size['width'] = '128';
break;
case '3':
/* This is used by the flash player */
$size['height'] = '80';
$size['width'] = '80';
break;
default:
$size['height'] = '275';
$size['width'] = '275';
break;
}
switch ($_REQUEST['type']) {
case 'popup':
show_template('show_big_art');
break;
// If we need to pull the data out of the session
case 'session':
$key = scrub_in($_REQUEST['image_index']);
$image = get_image_from_source($_SESSION['form']['images'][$key]);
$mime = $_SESSION['form']['images'][$key]['mime'];
$data = explode("/",$mime);
$extension = $data['1'];
header("Content-type: $mime");
header("Content-Disposition: filename=" . $key . "." . $extension);
echo $image;
break;
default:
$album = new Album($_REQUEST['id']);
// Attempt to pull art from the database
$art = $album->get_art();
if (!$art['art_mime']) {
header('Content-type: image/gif');
readfile(Config::get('prefix') . Config::get('theme_path') . '/images/blankalbum.gif');
break;
} // else no image
// Print the album art
$data = explode("/",$art['art_mime']);
$extension = $data['1'];
// if (empty($_REQUEST['thumb'])) {
$art_data = $art['art'];
// }
//else {
// $art_data = img_resize($art,$size,$extension,$_REQUEST['id']);
//}
// Send the headers and output the image
header("Content-type: $mime");
header("Content-Disposition: filename=" . $album->name . "." . $extension);
echo $art_data;
break;
} // end switch type
?>
|