Lines Matching refs:_tmp_filename
53 var $_tmp_filename; variable in LatexRender
221 $this->_tmp_filename = md5(rand().$destination);
223 $this->_cmdout = " >> ".$this->_tmp_filename.".cmd 2>&1";
225 $fp = fopen($this->_tmp_dir."/".$this->_tmp_filename.".tex","w");
230 $command = $this->_latex_path." --interaction=nonstopmode ".$this->_tmp_filename.".tex";
234 if (!file_exists($this->_tmp_filename.".dvi"))
244 …$command = $this->_dvips_path." -E ".$this->_tmp_filename.".dvi"." -o ".$this->_tmp_filename.".ps";
249 $command = $this->_convert_path." ".$this->_tmp_filename.".ps ".
250 $this->_tmp_filename.".".$this->_image_format;
263 $dim = $this->getDimensions($this->_tmp_filename.".".$this->_image_format);
275 $status_code = copy($this->_tmp_filename.".".$this->_image_format,$destination);
309 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".tex");
310 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".aux");
311 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".log");
312 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".dvi");
313 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".ps");
314 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".".$this->_image_format);