Lines Matching refs:FileName
176 function loadColorPalette($FileName, $Delimiter = ",") { argument
177 $handle = @fopen ( $FileName, "r" );
2693 function drawFromPNG($FileName, $X, $Y, $Alpha = 100) { argument
2694 $this->drawFromPicture ( 1, $FileName, $X, $Y, $Alpha );
2700 function drawFromGIF($FileName, $X, $Y, $Alpha = 100) { argument
2701 $this->drawFromPicture ( 2, $FileName, $X, $Y, $Alpha );
2707 function drawFromJPG($FileName, $X, $Y, $Alpha = 100) { argument
2708 $this->drawFromPicture ( 3, $FileName, $X, $Y, $Alpha );
2714 function drawFromPicture($PicType, $FileName, $X, $Y, $Alpha = 100) { argument
2715 if (file_exists ( $FileName )) {
2716 $Infos = getimagesize ( $FileName );
2720 $Raster = imagecreatefrompng ( $FileName );
2723 $Raster = imagecreatefromgif ( $FileName );
2726 $Raster = imagecreatefromjpeg ( $FileName );
2763 function Render($FileName) { argument
2771 imagepng ( $this->canvas->getPicture(), $FileName );
2922 $FileName = $Value [0];
2924 if (file_exists ( $FileName )) {
2925 $Handle = fopen ( $FileName, "r" );
2926 $MapContent = fread ( $Handle, filesize ( $FileName ) );
2931 unlink ( $FileName );