public
Description: openlibrary bookreader
Homepage: http://openlibrary.org/dev/docs/bookreader
Clone URL: git://github.com/openlibrary/bookreader.git
bookreader / GnuBookIA / datanode / GnuBookImages.php
100644 189 lines (152 sloc) 5.058 kb
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
 
/*
Copyright(c)2008 Internet Archive. Software license AGPL version 3.
 
This file is part of GnuBook.
 
GnuBook is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
 
GnuBook 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 Affero General Public License for more details.
 
You should have received a copy of the GNU Affero General Public License
along with GnuBook. If not, see <http://www.gnu.org/licenses/>.
*/
 
$MIMES = array('jpg' => 'image/jpeg',
               'png' => 'image/png');
 
$zipPath = $_REQUEST['zip'];
$file = $_REQUEST['file'];
 
// Unfortunately kakadu requires us to know a priori if the
// output file should be .ppm or .pgm. By decompressing to
// .bmp kakadu will write a file we can consistently turn into
// .pnm. Really kakadu should support .pnm as the file output
// extension and automatically write ppm or pgm format as
// appropriate.
$decompressToBmp = true;
if ($decompressToBmp) {
  $stdoutLink = '/tmp/stdout.bmp';
} else {
  $stdoutLink = '/tmp/stdout.ppm';
}
 
if (isset($_REQUEST['ext'])) {
  $ext = $_REQUEST['ext'];
} else {
  // Default to jpg
  $ext = 'jpg';
}
 
$fileExt = strtolower(pathinfo($file, PATHINFO_EXTENSION));
 
// Rotate is currently only supported for jp2 since it does not add server load
$allowedRotations = array("0", "90", "180", "270");
$rotate = $_REQUEST['rotate'];
if ( !in_array($rotate, $allowedRotations) ) {
    $rotate = "0";
}
 
// Image conversion options
$pngOptions = '';
$jpegOptions = '-quality 75';
 
// The pbmreduce reduction factor produces an image with dimension 1/n
// The kakadu reduction factor produceds an image with dimension 1/(2^n)
 
if (isset($_REQUEST['height'])) {
    $ratio = floatval($_REQUEST['origHeight']) / floatval($_REQUEST['height']);
    if ($ratio <= 2) {
        $scale = 2;
        $powReduce = 1;
    } else if ($ratio <= 4) {
        $scale = 4;
        $powReduce = 2;
    } else {
        //$powReduce = 3; //too blurry!
        $scale = 2;
        $powReduce = 1;
    }
 
} else {
    $scale = $_REQUEST['scale'];
    if (1 >= $scale) {
        $scale = 1;
        $powReduce = 0;
    } else if (2 == $scale) {
        $powReduce = 1;
    } else if (4 == $scale) {
        $powReduce = 2;
    } else if (8 == $scale) {
        $powReduce = 3;
    } else if (16 == $scale) {
        $powReduce = 4;
    } else if (32 == $scale) {
        $powReduce = 5;
    } else {
        // $$$ Leaving this in as default though I'm not sure why it is...
        $scale = 8;
        $powReduce = 3;
    }
}
 
if (!file_exists($stdoutLink))
{
  system('ln -s /dev/stdout ' . $stdoutLink);
}
 
 
putenv('LD_LIBRARY_PATH=/petabox/sw/lib/kakadu');
 
$unzipCmd = 'unzip -p ' .
        escapeshellarg($zipPath) .
        ' ' . escapeshellarg($file);
        
if ('jp2' == $fileExt) {
    $decompressCmd =
        " | /petabox/sw/bin/kdu_expand -no_seek -quiet -reduce $powReduce -rotate $rotate -i /dev/stdin -o " . $stdoutLink;
    if ($decompressToBmp) {
        $decompressCmd .= ' | bmptopnm ';
    }
    
} else if ('tif' == $fileExt) {
    // We need to create a temporary file for tifftopnm since it cannot
    // work on a pipe (the file must be seekable).
    // We use the GnuBookTiff prefix to give a hint in case things don't
    // get cleaned up.
    $tempFile = tempnam("/tmp", "GnuBookTiff");
    
    if (1 != $scale) {
        if (onPowerNode()) {
            $pbmReduce = ' | pnmscale -reduce ' . $scale;
        } else {
            $pbmReduce = ' | pnmscale -nomix -reduce ' . $scale;
        }
    } else {
        $pbmReduce = '';
    }
    
    $decompressCmd =
        ' > ' . $tempFile . ' ; tifftopnm ' . $tempFile . ' 2>/dev/null' . $pbmReduce;
 
} else {
    GBfatal('Unknown source file extension: ' . $fileExt);
}
       
// Non-integer scaling is currently disabled on the cluster
// if (isset($_REQUEST['height'])) {
// $cmd .= " | pnmscale -height {$_REQUEST['height']} ";
// }
 
if ('jpg' == $ext) {
    $compressCmd = ' | pnmtojpeg ' . $jpegOptions;
} else if ('png' == $ext) {
    $compressCmd = ' | pnmtopng ' . $pngOptions;
}
 
$cmd = $unzipCmd . $decompressCmd . $compressCmd;
 
//print $cmd;
 
header('Content-type: ' . $MIMES[$ext]);
header('Cache-Control: max-age=15552000');
 
passthru ($cmd);
 
if (isset($tempFile)) {
  unlink($tempFile);
}
 
function GBFatal($string) {
    echo "alert('$string')\n";
    die(-1);
}
 
// Returns true if using a power node
function onPowerNode() {
    exec("lspci | fgrep -c Realtek", $output, $return);
    if ("0" != $output[0]) {
        return true;
    } else {
        exec("egrep -q AMD /proc/cpuinfo", $output, $return);
        if ($return == 0) {
            return true;
        }
    }
    return false;
}
 
 
?>