Heim > Artikel > Backend-Entwicklung > PHP Batik implementiert die Funktion zum Exportieren von Highchart-Bildern
Seit Kurzem gibt es eine Exportpflicht, die die gemeinsame Generierung von Highchart-Bildern und Datenberichten vorschreibt.
Nachdem ich ein paar Tage gekämpft hatte, habe ich es endlich geschafft.
1. Zuerst müssen Sie die JAVA-Umgebung installieren. Es müssen keine Umgebungsvariablen oder ähnliches festgelegt werden.
2. Laden Sie das entsprechende Batikglas-Paket herunter. Ich habe es mehrmals heruntergeladen, aber es war falsch. Den Anhang habe ich zusammengestellt.
3. Rufen Sie das offizielle PHP-Programm auf und ich habe es in einer Funktion organisiert.
function svgToImg($type, $svg, $filename){ clearFile(SAVE_PATH);//删除过期文件 ini_set('magic_quotes_gpc', 'off'); $svg = (string) $svg; $filename = (string) $filename; // prepare variables if (!$filename or !preg_match('/^[A-Za-z0-9\-_ ]+$/', $filename)) { $filename = 'chart'; } if (get_magic_quotes_gpc()) { $svg = stripslashes($svg); } // check for malicious attack in SVG if(strpos($svg,"<!ENTITY") !== false || strpos($svg,"<!DOCTYPE") !== false){ exit("Execution is stopped, the posted SVG could contain code for a malicious attack"); } $tempName = md5(rand()); // allow no other than predefined types if ($type == 'image/png') { $typeString = '-m image/png'; $ext = 'png'; } elseif ($type == 'image/jpeg') { $typeString = '-m image/jpeg'; $ext = 'jpg'; } elseif ($type == 'application/pdf') { $typeString = '-m application/pdf'; $ext = 'pdf'; } elseif ($type == 'image/svg+xml') { $ext = 'svg'; } else { // prevent fallthrough from global variables $ext = 'txt'; } $outfile = SAVE_PATH.$tempName.'.'.$ext; if (isset($typeString)) { // size $width = ''; if ($_POST['width']) { $width = (int)$_POST['width']; if ($width) $width = "-w $width"; } // generate the temporary file if (!file_put_contents(SAVE_PATH."$tempName.svg", $svg)) { die("Couldn't create temporary file. Check that the directory permissions for the /temp directory are set to 777."); } if(IS_WIN){ $output = shell_exec("java -jar ". BATIK_PATH ." $typeString -d $outfile $width ".SAVE_PATH."$tempName.svg"); }else{ $output = shell_exec("/usr/local/jdk1.8.0_66/bin/java -jar ". BATIK_PATH ." $typeString -d $outfile $width ".SAVE_PATH."$tempName.svg"); } // catch error if (!is_file($outfile)) { echo "<pre class="brush:php;toolbar:false">$output"; echo „Fehler beim Konvertieren von SVG.“; } anders { return $outfile; } } else if ($ext == 'svg') { header("Content-Disposition: attachment; filename="$filename.$ext""); header("Content-Type: $type"); echo $svg; } anders { echo „Ungültiger Typ“; } }
Speichern Sie die Datei lokal, und dann können Sie tun, was Sie wollen.
Wenn Sie die Installation der JAVA-Umgebung wirklich mühsam finden, können Sie die offizielle Exportadresse direkt simulieren und eine Anfrage stellen.