Home
last modified time | relevance | path

Searched refs:filename (Results 326 – 350 of 756) sorted by path

1...<<11121314151617181920>>...31

/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
H A DDocHTML.php233 function getClassDocFromFile($filename) { argument
234 if(is_string($filename) && file_exists($filename) && is_readable($filename)) {
235 $objClass = new PHPClass($filename);
H A DPHPClass.php49 function PHPClass($filename = "") { argument
53 if($filename != "")
54 $this->parseFromFile($filename);
91 function parseFromFile($filename) { argument
93 if(file_exists($filename) && is_readable($filename)) {
94 $arrContents = file($filename);
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/sys/
H A DFile.php36 var $filename; variable in File
54 function File($filename = "", $fileOpenMode = "r") { argument
56 $this->filename = $filename;
66 if($this->filename != "")
67 $success = $this->open($this->filename, $this->fileOpenMode);
79 $this->filename = "";
115 $fileContentsArray = file($this->filename);
126 function open($filename, $mode = "r") { argument
129 $this->handleID = @fopen($filename, $mode);
131 $this->filename = $filename;
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXMLDocument.php57 function XMLDocument($filename = "", $fileOpenMode = "r") { argument
58 $success = $this->File($filename, $fileOpenMode);
117 function save($filename) { argument
118 $success = $this->open($filename, $this->fileOpenModeWrite);
/plugin/html2pdf/html2pdf/html2ps/
H A Dconfig.parse.php174 function parse_config_file($filename) { argument
179 $doc = TreeBuilder::build(file_get_contents($filename));
H A Ddestination._http.class.php3 function DestinationHTTP($filename) { argument
4 $this->Destination($filename);
H A Ddestination._interface.class.php3 var $filename; variable in Destination
5 function Destination($filename) { argument
6 $this->set_filename($filename);
9 function filename_escape($filename) { return preg_replace("/[^a-z0-9-]/i","_",$filename); } argument
11 function get_filename() { return empty($this->filename) ? OUTPUT_DEFAULT_NAME : $this->filename; }
13 function process($filename, $content_type) { argument
17 function set_filename($filename) { $this->filename = $filename; } argument
H A Ddestination.download.class.php3 function DestinationDownload($filename) { argument
4 $this->DestinationHTTP($filename);
H A Ddestination.file.class.php5 function DestinationFile($filename, $link_text = null) { argument
6 $this->Destination($filename);
H A Dfilter.output.ps2pdf.class.php36 function _mk_cmd($filename) { argument
37 …atibilityLevel=".$this->pdf_version." -sDEVICE=pdfwrite -sOutputFile=".$filename.".pdf ".$filename;
H A Dfilter.pre.fields.class.php3 var $filename; variable in PreTreeFilterHTML2PSFields
7 function PreTreeFilterHTML2PSFields($filename=null, $filesize=null, $timestamp=null) { argument
8 $this->filename = $filename;
39 if (is_null($this->filename)) {
42 $tree->words[0] = $this->filename;
H A Dfont.class.php157 $filename = TYPE1_FONTS_REPOSITORY.$afm.".afm";
159 $file = @fopen($filename, 'r');
161 $_filename = $filename;
169 error_log(sprintf("Missing font metrics file: %s",$filename));
H A Dimage.class.php21 function Image($handle, $filename, $type) { argument
23 $this->_filename = $filename;
78 $filename = ImageFactory::make_cache_filename($url);
94 $file = fopen($filename, 'wb');
101 $handle = do_image_open($filename, $type);
104 $filename,
H A Dinline.content.builder.php941 $filename = CACHE_DIR.'unicode.lb.classes.dat';
942 if (!file_exists($filename)) {
943 $this->generate_line_break_class_table($filename);
946 $table_handle = fopen($filename, 'rb');
H A Dot.class.php27 function open($filename) { argument
28 $this->_filehandle = fopen($filename, 'rb');
H A Doutput._generic.class.php24 var $filename; variable in OutputDriverGeneric
218 $filename = tempnam(WRITER_TEMPDIR,WRITER_FILE_PREFIX);
219 $filehandle = @fopen($filename, "wb");
229 $filename = WRITER_TEMPDIR.DIRECTORY_SEPARATOR.WRITER_FILE_PREFIX.md5(uniqid(rand(), true));
232 $filehandle = @fopen($filename, "xb");
246 unlink($filename);
248 return $filename;
252 return $this->filename;
284 function set_filename($filename) { argument
285 $this->filename = $filename;
H A Doutput.fpdf.class.php415 $filename = $tempnam . '.png';
416 imagepng($image->get_handle(), $filename);
421 $filename = $tempnam . '.jpg';
422 imagejpeg($image->get_handle(), $filename);
427 return $filename;
H A Doutput.pdflib.class.php298 $filename = $this->generate_cpg($encoding_name,
304 $filename));
349 $filename = $this->generate_cpg('koi8-r');
350 pdf_set_parameter($this->pdf, 'Encoding', sprintf('koi8-r=%s', $filename));
431 $filename = CACHE_DIR.$encoding.'.cpg';
433 $filename = CACHE_DIR.uniqid('', false).'.cpg';
436 if (file_exists($filename)) {
437 return $filename;
440 $output = fopen($filename, 'w');
449 return $filename;
H A Dpipeline.factory.class.php6 function &create_default_pipeline($encoding, $filename) { argument
32 $pipeline->destination = new DestinationDownload($filename, ContentType::pdf());
H A Dstubs.file_put_contents.inc.php3 function file_put_contents($filename, $data) { argument
4 $file = fopen($filename, 'w');
H A Dutils_graphic.php4 function do_image_open($filename, &$type) { argument
12 $image = do_image_open_wrapped($filename, $type);
22 function do_image_open_wrapped($filename, &$type) { argument
30 if (!$data = @getimagesize($filename)) { return null; };
36 return @imagecreatefromgif($filename);
42 return @imagecreatefromjpeg($filename);
45 $image = imagecreatefrompng($filename);
51 return @imagecreatefromwbmp($filename);
/plugin/html2pdf/html2pdf/html2ps/demo/
H A Dtest.php22 function MyDestinationDownload($filename) { argument
23 $this->DestinationHTTP($filename);
24 $GLOBALS['PDFOutFileName'] = $filename;
/plugin/html2pdf/html2pdf/html2ps/destinations/
H A Dnull.php8 function process($filename, $content_type) { argument
/plugin/html5video/
H A Dvideo.php142 private function _getAlts($filename) { argument
/plugin/html5video2/syntax/
H A Dvideo.php208 private function _getAlts($filename) { argument

1...<<11121314151617181920>>...31