no longer used
[phpmyadmin/crack.git] / transformation_wrapper.php
blob7e6bafe0dae471b1df14535af2fb2bbba7f934ea
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
5 define('IS_TRANSFORMATION_WRAPPER', true);
7 /**
8 * Gets a core script and starts output buffering work
9 */
10 require_once('./libraries/common.lib.php');
11 require_once('./libraries/relation.lib.php'); // foreign keys
12 require_once('./libraries/transformations.lib.php'); // Transformations
13 $cfgRelation = PMA_getRelationsParam();
15 /**
16 * Ensures db and table are valid, else moves to the "parent" script
18 require_once('./libraries/db_table_exists.lib.php');
21 /**
22 * Get the list of the fields of the current table
24 PMA_DBI_select_db($db);
25 $table_def = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table), null, PMA_DBI_QUERY_STORE);
26 if (isset($primary_key)) {
27 $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $primary_key . ';', null, PMA_DBI_QUERY_STORE);
28 $row = PMA_DBI_fetch_assoc($result);
29 } else {
30 $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($table) . ' LIMIT 1;', null, PMA_DBI_QUERY_STORE);
31 $row = PMA_DBI_fetch_assoc($result);
34 // No row returned
35 if (!$row) {
36 exit;
37 } // end if (no record returned)
39 $default_ct = 'application/octet-stream';
41 if ($cfgRelation['commwork'] && $cfgRelation['mimework']) {
42 $mime_map = PMA_getMime($db, $table);
43 $mime_options = PMA_transformation_getOptions((isset($mime_map[urldecode($transform_key)]['transformation_options']) ? $mime_map[urldecode($transform_key)]['transformation_options'] : ''));
45 foreach ($mime_options AS $key => $option) {
46 if (substr($option, 0, 10) == '; charset=') {
47 $mime_options['charset'] = $option;
52 // garvin: For re-usability, moved http-headers and stylesheets
53 // to a seperate file. It can now be included by libraries/header.inc.php,
54 // querywindow.php.
56 require_once('./libraries/header_http.inc.php');
57 // [MIME]
58 if (isset($ct) && !empty($ct)) {
59 $content_type = 'Content-Type: ' . urldecode($ct);
60 } else {
61 $content_type = 'Content-Type: ' . (isset($mime_map[urldecode($transform_key)]['mimetype']) ? str_replace('_', '/', $mime_map[urldecode($transform_key)]['mimetype']) : $default_ct) . (isset($mime_options['charset']) ? $mime_options['charset'] : '');
63 header($content_type);
65 if (isset($cn) && !empty($cn)) {
66 header('Content-Disposition: attachment; filename=' . urldecode($cn));
69 if (!isset($resize)) {
70 echo $row[urldecode($transform_key)];
71 } else {
72 // if image_*__inline.inc.php finds that we can resize,
73 // it sets $resize to jpeg or png
75 $srcImage = imagecreatefromstring($row[urldecode($transform_key)]);
76 $srcWidth = ImageSX( $srcImage );
77 $srcHeight = ImageSY( $srcImage );
79 // Check to see if the width > height or if width < height
80 // if so adjust accordingly to make sure the image
81 // stays smaller then the $newWidth and $newHeight
83 $ratioWidth = $srcWidth/$newWidth;
84 $ratioHeight = $srcHeight/$newHeight;
86 if ($ratioWidth < $ratioHeight){
87 $destWidth = $srcWidth/$ratioHeight;
88 $destHeight = $newHeight;
89 } else {
90 $destWidth = $newWidth;
91 $destHeight = $srcHeight/$ratioWidth;
94 if ($resize) {
95 $destImage = ImageCreateTrueColor( $destWidth, $destHeight);
98 // ImageCopyResized( $destImage, $srcImage, 0, 0, 0, 0, $destWidth, $destHeight, $srcWidth, $srcHeight );
99 // better quality but slower:
100 ImageCopyResampled( $destImage, $srcImage, 0, 0, 0, 0, $destWidth, $destHeight, $srcWidth, $srcHeight );
102 if ($resize == 'jpeg') {
103 ImageJPEG( $destImage, '', 75 );
105 if ($resize == 'png') {
106 ImagePNG( $destImage);
108 ImageDestroy( $srcImage );
109 ImageDestroy( $destImage );
113 * Close MySql non-persistent connections
115 if (isset($GLOBALS['controllink']) && $GLOBALS['controllink']) {
116 @PMA_DBI_close($GLOBALS['controllink']);
118 if (isset($GLOBALS['userlink']) && $GLOBALS['userlink']) {
119 @PMA_DBI_close($GLOBALS['userlink']);