emacs-latex-preview-server/public/index.php
2024-06-23 10:07:05 -06:00

10 lines
270 B
PHP

<?php
move_uploaded_file($_FILES["file"]["tmp_name"], "tmp.tex");
$dpi = isset($_POST['dpi']) ? intval($_POST['dpi']) : 200;
$output = shell_exec("./tex2png.sh tmp.tex $dpi");
if ($output !== null) {
$host = $_SERVER['HTTP_HOST'];
echo "http://$host/$output";
}
?>