19 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
53 $this->main_tpl = $DIC->ui()->mainTemplate();
58 if (!@is_file($this->preview_filename)) {
60 if (preg_match(
"/.*\.(png|jpg|gif|jpeg)$/", $this->imagemap_filename, $matches)) {
61 $extension =
"." . $matches[1];
63 include_once
"./Services/Utilities/classes/class.ilUtil.php";
66 $this->areas = array();
67 $this->points = array();
68 $this->linewidth_outer = 4;
69 $this->linewidth_inner = 2;
74 return count($this->areas);
79 return count($this->points);
91 $bordercolor =
"white",
92 $fillcolor =
"#FFFFFFA0" 94 if (ini_get(
"safe_mode")) {
95 if ((strpos($fillcolor,
"#") !==
false) || (strpos($fillcolor,
"rgb") !==
false)) {
96 $fillcolor = str_replace(
"\"",
"", $fillcolor);
99 $this->areas[
$index] = array(
101 "coords" =>
"$coords",
102 "title" => htmlspecialchars($title),
104 "target" =>
"$target",
105 "linecolor" =>
'"' . $linecolor .
'"',
106 "fillcolor" =>
'"' . $fillcolor .
'"',
107 "bordercolor" =>
'"' . $bordercolor .
'"',
108 "visible" => (
int) $visible
117 $bordercolor =
"white",
118 $fillcolor =
"#FFFFFFA0" 120 $this->points[
$index] = array(
121 "coords" =>
"$coords",
122 "linecolor" =>
'"' . $linecolor .
'"',
123 "fillcolor" =>
'"' . $fillcolor .
'"',
124 "bordercolor" =>
'"' . $bordercolor .
'"',
125 "visible" => (
int) $visible
131 if (count($this->areas) + count($this->points) > 0) {
132 $arr = array_merge(array_keys($this->areas), array_keys($this->points));
133 sort($arr, SORT_NUMERIC);
135 $inner = join(
"_", $arr);
136 if (strlen($inner) > 32) {
137 $inner = md5($inner);
139 return "preview_" . $inner .
"_";
147 if (count($this->areas) + count($this->points) == 0) {
150 include_once
"./Services/Utilities/classes/class.ilUtil.php";
151 $convert_cmd =
"-quality 100 ";
152 foreach ($this->points as $point) {
153 if ($point[
"visible"]) {
154 preg_match(
"/(\d+)\s*,\s*(\d+)/", $point[
"coords"], $matches);
159 $convert_cmd .=
"-stroke " . $point[
"bordercolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"line " .
160 ($x - $r) .
"," . ($y - $r) .
" " . ($x + $r) .
"," . ($y + $r) .
"\" " .
161 "-stroke " . $point[
"bordercolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"line " .
162 ($x + $r) .
"," . ($y - $r) .
" " . ($x - $r) .
"," . ($y + $r) .
"\" " .
163 "-stroke " . $point[
"linecolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"line " .
164 ($x - $r) .
"," . ($y - $r) .
" " . ($x + $r) .
"," . ($y + $r) .
"\" " .
165 "-stroke " . $point[
"linecolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"line " .
166 ($x + $r) .
"," . ($y - $r) .
" " . ($x - $r) .
"," . ($y + $r) .
"\" ";
169 foreach ($this->areas as $area) {
170 if ($area[
"visible"] and strcmp(strtolower($area[
"shape"]),
"rect") == 0) {
171 preg_match(
"/(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches);
177 $convert_cmd .=
"-stroke " . $area[
"bordercolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"rectangle " .
178 $x0 .
"," . $y0 .
" " . ($x1) .
"," . $y1 .
"\" " .
179 "-stroke " . $area[
"linecolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"rectangle " .
180 $x0 .
"," . $y0 .
" " . ($x1) .
"," . $y1 .
"\" ";
181 } elseif ($area[
"visible"] and strcmp(strtolower($area[
"shape"]),
"circle") == 0) {
182 preg_match(
"/(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches);
187 $convert_cmd .=
"-stroke " . $area[
"bordercolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"circle " .
188 $x .
"," . $y .
" " . ($x + $r) .
"," . $y .
"\" " .
189 "-stroke " . $area[
"linecolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"circle " .
190 $x .
"," . $y .
" " . ($x + $r) .
"," . $y .
"\" ";
191 } elseif ($area[
"visible"] and strcmp(strtolower($area[
"shape"]),
"poly") == 0) {
194 preg_match_all(
"/(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches, PREG_PATTERN_ORDER);
195 if (count($matches[0]) == 2) {
198 $convert_cmd .=
"-stroke " . $area[
"bordercolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"$obj ";
199 for (
$i = 0;
$i < count($matches[0]);
$i++) {
200 $convert_cmd .= $matches[1][
$i] .
"," . $matches[2][
$i] .
" ";
202 $convert_cmd .=
"\" ";
203 $convert_cmd .=
"-stroke " . $area[
"linecolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"$obj ";
204 preg_match_all(
"/(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches, PREG_PATTERN_ORDER);
205 for (
$i = 0;
$i < count($matches[0]);
$i++) {
206 $convert_cmd .= $matches[1][
$i] .
"," . $matches[2][
$i] .
" ";
208 $convert_cmd .=
"\" ";
215 $convert_cmd = preg_replace(
'/\\\\(#([a-fA-F0-9]{3}|[a-fA-F0-9]{6}|[a-fA-F0-9]{8}))/',
'${1}', $convert_cmd);
216 $convert_cmd =
$source .
"[0] " . $convert_cmd .
" " . $target;
217 $this->
execQuoted(PATH_TO_CONVERT, $convert_cmd);
222 if (ini_get(
'safe_mode') == 1) {
225 setlocale(LC_CTYPE,
"UTF8",
"en_US.UTF-8");
226 return escapeshellcmd($a_arg);
233 if (
ilUtil::isWindows() && strpos($cmd,
" ") !==
false && substr($cmd, 0, 1) !==
'"') {
234 $cmd =
'"' . $cmd .
'"';
243 $DIC->logger()->root()->debug(
"ilUtil::execQuoted: " . $cmd .
".");
251 if (count($this->areas) + count($this->points) > 0) {
253 if (is_file($pfile)) {
255 $previewfile = $imagePath . $ident . $baseFileName;
256 if (@md5_file($previewfile) != @md5_file($pfile)) {
257 if (strlen($ident) > 0) {
258 @copy($pfile, $previewfile);
262 if (strlen($pfile) == 0) {
263 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"qpl_imagemap_preview_missing"));
268 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"qpl_imagemap_preview_missing"));
280 $map =
"<map name=\"$title\"> ";
281 foreach ($this->areas as $area) {
282 $map .=
"<area alt=\"" . $area[
"title"] .
"\" title=\"" . $area[
"title"] .
"\" ";
283 $map .=
"shape=\"" . $area[
"shape"] .
"\" ";
284 $map .=
"coords=\"" . $area[
"coords"] .
"\" ";
286 $map .=
"href=\"" . $area[
"href"] .
"\" ";
287 if ($area[
"target"]) {
288 $map .=
"target=\"" . $area[
"target"] .
"\" ";
292 $map .=
"nohref />\n";
getPreviewFilename($imagePath, $baseFileName)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $main_tpl
static execQuoted($cmd, $args=null)
getImagemap($title)
get imagemap html code note: html code should be placed in template files
static escapeShellCmd($a_arg)
__construct($imagemap_filename="")
ilImagemapPreview constructor
addPoint( $index, $coords, $visible=true, $linecolor="red", $bordercolor="white", $fillcolor="#FFFFFFA0")
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
addArea( $index, $shape, $coords, $title="", $href="", $target="", $visible=true, $linecolor="red", $bordercolor="white", $fillcolor="#FFFFFFA0")