width and height options

This commit is contained in:
Marc Delisle
2003-03-07 18:01:07 +00:00
parent 280336063f
commit 349aee42bf
2 changed files with 3 additions and 4 deletions

View File

@@ -9,8 +9,7 @@ if (!defined('PMA_TRANSFORMATION_IMAGE_JPEG__INLINE')){
include('./libraries/transformations/global.inc.php3');
if (PMA_IS_GD2) {
//$transform_options = array ('string' => '<img src="transformation_wrapper.php3' . $options['wrapper_link'] . '&resize=1&suggested_size=' . (isset($options[0]) ? $options[0] : '100') . '" alt="[__BUFFER__]">');
$transform_options = array ('string' => '<a href="transformation_wrapper.php3' . $options['wrapper_link'] . '" target="_blank"><img src="transformation_wrapper.php3' . $options['wrapper_link'] . '&resize=1&suggested_size=' . (isset($options[0]) ? $options[0] : '100') . '" alt="[__BUFFER__]" border="0"></a>');
$transform_options = array ('string' => '<a href="transformation_wrapper.php3' . $options['wrapper_link'] . '" target="_blank"><img src="transformation_wrapper.php3' . $options['wrapper_link'] . '&resize=1&newWidth=' . (isset($options[0]) ? $options[0] : '100') . '&newHeight=' . (isset($options[1]) ? $options[1] : 100) . '" alt="[__BUFFER__]" border="0"></a>');
} else {
$transform_options = array ('string' => '<img src="transformation_wrapper.php3' . $options['wrapper_link'] . '" alt="[__BUFFER__]" width="320" height="240">');
}

View File

@@ -155,8 +155,8 @@ if (!isset($resize)) {
// it sets $resize to 1
$srcImage = imagecreatefromstring($row[urldecode($transform_key)]);
$newWidth = $suggested_size;
$newHeight = $suggested_size;
//$newWidth = $suggested_size;
//$newHeight = $suggested_size;
$srcWidth = ImageSX( $srcImage );
$srcHeight = ImageSY( $srcImage );