Skip to content
Snippets Groups Projects
Select Git revision
  • patch-2
  • master default protected
  • patch-1
  • dev
4 results

foot.php

Blame
  • Forked from websites / cesium_website
    Source project has a limited visibility.
    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);