Select Git revision
test_image.php
Forked from
websites / cesium_website
275 commits behind, 1 commit ahead of the upstream repository.
test_image.php 386 B
<?php
$p = "i18n/fr_FR/contents/tuto/modifier-temps-avant-deconnexion.png";
// header("Content-type: image/png");
header('Content-Length: '. filesize("./" . $p));
// $img = imagecreatefrompng($p);
// $img = imagecreatefrompng($tutoContentsPath . $subpage) OR DIE("ERREUR");
// imagepng($img);
// fopen("i18n/fr_FR/contents/tuto/parametres.png") or die("erreur");
readfile("./" . $p);