From 07f0c405b3c1953eb9f5b866f8f40c638cdf6515 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 8 Mar 2017 12:18:06 +0100 Subject: [PATCH] Use original size for elements smaller than 70 in render and viewer vconsole - #90 --- .../include/functions_visual_map.php | 38 +++++++++++++++---- 1 file changed, 31 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 6f34924024..ad38e4a4e9 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1182,17 +1182,28 @@ function visual_map_print_item($mode = "read", $layoutData, else if($layoutData['label_position']=='right'){ $imgpos = 'float:left'; } - - if ($width == 0 || $height == 0) - echo html_print_image($img, true, - array("class" => "image", + $varsize = getimagesize($img); + if ($width == 0 || $height == 0) { + if($varsize[0] > 150 || $varsize[1] > 150){ + echo html_print_image($img, true, + array("class" => "image", "id" => "image_" . $id, "width" => "70px", "height" => "70px", "title" => $img_style_title, "style" => $borderStyle.$imgpos), false, false, false, $isExternalLink); - else + } + else{ + echo html_print_image($img, true, + array("class" => "image", + "id" => "image_" . $id, + "title" => $img_style_title, + "style" => $borderStyle.$imgpos), false, + false, false, $isExternalLink); + } + } + else{ echo html_print_image($img, true, array("class" => "image", "id" => "image_" . $id, @@ -1201,6 +1212,7 @@ function visual_map_print_item($mode = "read", $layoutData, "title" => $img_style_title, "style" => $borderStyle.$imgpos), false, false, false, $isExternalLink); + } } @@ -1466,18 +1478,30 @@ function visual_map_print_item($mode = "read", $layoutData, } } - if (($width != 0) && ($height != 0)) + $varsize = getimagesize($img); + if (($width != 0) && ($height != 0)){ echo html_print_image($img, true, array("class" => "image", "id" => "image_" . $id, "width" => "$width", "height" => "$height"), false, false, false, $isExternalLink); - else + } + else{ + if($varsize[0] > 150 || $varsize[0] > 150){ echo html_print_image($img, true, array("class" => "image", "id" => "image_" . $id,"width" => "70px", "70px" => "$height"), false, false, false, $isExternalLink); + } + else{ + echo html_print_image($img, true, + array("class" => "image", + "id" => "image_" . $id), false, + false, false, $isExternalLink); + } + } + } break; default: