51 $this->main_tpl = $DIC->ui()->mainTemplate();
56 if (!@is_file($this->preview_filename)) {
58 if (preg_match(
"/.*\.(png|jpg|gif|jpeg)$/", $this->imagemap_filename, $matches)) {
59 $extension =
"." . $matches[1];
65 $this->linewidth_outer = 4;
66 $this->linewidth_inner = 2;
71 return count($this->areas);
76 return count($this->points);
88 $bordercolor =
"white",
89 $fillcolor =
"#FFFFFFA0" 91 if (ini_get(
"safe_mode")) {
92 if ((strpos($fillcolor,
"#") !==
false) || (strpos($fillcolor,
"rgb") !==
false)) {
93 $fillcolor = str_replace(
"\"",
"", $fillcolor);
96 $this->areas[$index] = [
98 "coords" =>
"$coords",
99 "title" => htmlspecialchars($title),
101 "target" =>
"$target",
102 "linecolor" =>
'"' . $linecolor .
'"',
103 "fillcolor" =>
'"' . $fillcolor .
'"',
104 "bordercolor" =>
'"' . $bordercolor .
'"',
105 "visible" => (
int) $visible
114 $bordercolor =
"white",
115 $fillcolor =
"#FFFFFFA0" 117 $this->points[$index] = [
118 "coords" =>
"$coords",
119 "linecolor" =>
'"' . $linecolor .
'"',
120 "fillcolor" =>
'"' . $fillcolor .
'"',
121 "bordercolor" =>
'"' . $bordercolor .
'"',
122 "visible" => (
int) $visible
128 if (count($this->areas) + count($this->points) > 0) {
129 $arr = array_merge(array_keys($this->areas), array_keys($this->points));
130 sort($arr, SORT_NUMERIC);
132 $inner = join(
"_", $arr);
133 if (strlen($inner) > 32) {
134 $inner = md5($inner);
136 return "preview_" . $inner .
"_";
144 if (count($this->areas) + count($this->points) == 0) {
147 $convert_cmd =
"-quality 100 ";
148 foreach ($this->points as $point) {
149 if ($point[
"visible"]) {
150 preg_match(
"/(\d+)\s*,\s*(\d+)/", $point[
"coords"], $matches);
155 $convert_cmd .=
"-stroke " . $point[
"bordercolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"line " .
156 ($x -
$r) .
"," . ($y -
$r) .
" " . ($x +
$r) .
"," . ($y +
$r) .
"\" " .
157 "-stroke " . $point[
"bordercolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"line " .
158 ($x +
$r) .
"," . ($y -
$r) .
" " . ($x -
$r) .
"," . ($y +
$r) .
"\" " .
159 "-stroke " . $point[
"linecolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"line " .
160 ($x -
$r) .
"," . ($y -
$r) .
" " . ($x +
$r) .
"," . ($y +
$r) .
"\" " .
161 "-stroke " . $point[
"linecolor"] .
" -fill " . $point[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"line " .
162 ($x +
$r) .
"," . ($y -
$r) .
" " . ($x -
$r) .
"," . ($y +
$r) .
"\" ";
165 foreach ($this->areas as $area) {
166 if ($area[
"visible"] and strcmp(strtolower($area[
"shape"]),
"rect") == 0) {
167 preg_match(
"/(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches);
173 $convert_cmd .=
"-stroke " . $area[
"bordercolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"rectangle " .
174 $x0 .
"," . $y0 .
" " . ($x1) .
"," . $y1 .
"\" " .
175 "-stroke " . $area[
"linecolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"rectangle " .
176 $x0 .
"," . $y0 .
" " . ($x1) .
"," . $y1 .
"\" ";
177 } elseif ($area[
"visible"] and strcmp(strtolower($area[
"shape"]),
"circle") == 0) {
178 preg_match(
"/(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches);
183 $convert_cmd .=
"-stroke " . $area[
"bordercolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"circle " .
184 $x .
"," . $y .
" " . ($x +
$r) .
"," . $y .
"\" " .
185 "-stroke " . $area[
"linecolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"circle " .
186 $x .
"," . $y .
" " . ($x +
$r) .
"," . $y .
"\" ";
187 } elseif ($area[
"visible"] and strcmp(strtolower($area[
"shape"]),
"poly") == 0) {
190 preg_match_all(
"/(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches, PREG_PATTERN_ORDER);
191 if (count($matches[0]) == 2) {
194 $convert_cmd .=
"-stroke " . $area[
"bordercolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_outer -draw \"$obj ";
195 for ($i = 0; $i < count($matches[0]); $i++) {
196 $convert_cmd .= $matches[1][$i] .
"," . $matches[2][$i] .
" ";
198 $convert_cmd .=
"\" ";
199 $convert_cmd .=
"-stroke " . $area[
"linecolor"] .
" -fill " . $area[
"fillcolor"] .
" -strokewidth $this->linewidth_inner -draw \"$obj ";
200 preg_match_all(
"/(\d+)\s*,\s*(\d+)/", $area[
"coords"], $matches, PREG_PATTERN_ORDER);
201 for ($i = 0; $i < count($matches[0]); $i++) {
202 $convert_cmd .= $matches[1][$i] .
"," . $matches[2][$i] .
" ";
204 $convert_cmd .=
"\" ";
211 $convert_cmd = preg_replace(
'/\\\\(#([a-fA-F0-9]{3}|[a-fA-F0-9]{6}|[a-fA-F0-9]{8}))/',
'${1}', $convert_cmd);
212 $convert_cmd = $source .
"[0] " . $convert_cmd .
" " . $target;
213 $this->
execQuoted(PATH_TO_CONVERT, $convert_cmd);
218 if (ini_get(
'safe_mode') == 1) {
221 setlocale(LC_CTYPE,
"UTF8",
"en_US.UTF-8");
222 return escapeshellcmd($a_arg);
229 if (
ilUtil::isWindows() && strpos($cmd,
" ") !==
false && substr($cmd, 0, 1) !==
'"') {
230 $cmd =
'"' . $cmd .
'"';
239 $DIC->logger()->root()->debug(
"ilUtil::execQuoted: " . $cmd .
".");
246 string $base_file_name
248 if (count($this->areas) + count($this->points) < 1) {
249 return $base_file_name;
253 if (!is_file($preview_file)) {
254 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"qpl_imagemap_preview_missing"));
255 return $base_file_name;
259 $requested_preview_file = $image_path . $ident . $base_file_name;
260 if ((!is_file($requested_preview_file)
261 || md5_file($requested_preview_file) !== md5_file($preview_file))
263 copy($preview_file, $requested_preview_file);
265 unlink($preview_file);
266 return basename($requested_preview_file);
275 $map =
"<map name=\"$title\"> ";
276 foreach ($this->areas as $area) {
277 $map .=
"<area alt=\"" . $area[
"title"] .
"\" title=\"" . $area[
"title"] .
"\" ";
278 $map .=
"shape=\"" . $area[
"shape"] .
"\" ";
279 $map .=
"coords=\"" . $area[
"coords"] .
"\" ";
281 $map .=
"href=\"" . $area[
"href"] .
"\" ";
282 if ($area[
"target"]) {
283 $map .=
"target=\"" . $area[
"target"] .
"\" ";
287 $map .=
"nohref />\n";
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
sort()
description: > Example for rendering a Sort Glyph.
ilGlobalTemplateInterface $main_tpl
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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.
getPreviewFilename(string $image_path, string $base_file_name)
addArea( $index, $shape, $coords, $title="", $href="", $target="", $visible=true, $linecolor="red", $bordercolor="white", $fillcolor="#FFFFFFA0")