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"))
245 $command = $this->_dvips_path." ".$this->_tmp_filename.".dvi"." -o ".$this->_tmp_filename.".ps";
250 $command = $this->_convert_path." ".$this->_tmp_filename.".ps ".
251 $this->_tmp_filename.".".$this->_image_format;
264 $dim = $this->getDimensions($this->_tmp_filename.".".$this->_image_format);
276 $status_code = copy($this->_tmp_filename.".".$this->_image_format,$destination);
310 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".tex");
311 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".aux");
312 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".log");
313 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".dvi");
314 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".ps");
315 @unlink($this->_tmp_dir."/".$this->_tmp_filename.".".$this->_image_format);