Home
last modified time | relevance | path

Searched refs:encoding (Results 251 – 275 of 300) sorted by last modified time

1...<<1112

/plugin/html2pdf/html2pdf/html2ps/
H A Dot.class.php562 $encoding = new OpenTypeFileCMAPEncoding();
563 $encoding->_read($filehandle);
564 $this->_encodings[] =& $encoding;
585 foreach ($this->_encodings as $encoding) {
586 if ($encoding->_platformId == $platformId &&
587 $encoding->_encodingId == $encodingId) {
H A Doutput.pdflib.class.php28 function encoding($encoding) { function in OutputDriverPdflib
29 $encoding = trim(strtolower($encoding));
50 if (isset($translations[$encoding])) { return $translations[$encoding]; };
51 return $encoding;
103 function findfont($name, $encoding) { argument
106 $encoding = 'builtin';
111 return pdf_findfont($this->pdf, $name, $this->encoding($encoding), $embed);
114 function font_ascender($name, $encoding) { argument
118 function font_descender($name, $encoding) { argument
377 function setfont($name, $encoding, $size) { argument
[all …]
H A Dbox.text.php63 function get_content_callback($word, $encoding) { argument
65 return $manager_encoding->to_utf8($word, $encoding);
122 function add_subword($raw_subword, $encoding, $hyphens) { argument
140 $this->encodings[] = $encoding;
144 function &create($text, $encoding, &$pipeline) { argument
146 $box->add_subword($text, $encoding, array());
H A Dbox.text.string.php8 function &create($text, $encoding) { argument
9 $box =& new TextBoxString($text, $encoding);
14 function TextBoxString($word, $encoding) { argument
17 $this->add_subword($word, $encoding, array());
H A Dfont.class.php64 function create($fontfile, $encoding) { argument
66 $font->_read(TTF_FONTS_REPOSITORY.$fontfile, $encoding);
73 function _read($file, $encoding) { argument
74 error_log(sprintf("Parsing font file file %s for encoding %s", $file, $encoding));
91 $map = $manager->get_encoding_vector($encoding);
125 function &create($typeface, $encoding, $font_resolver, &$error_message) { argument
143 if (!$font->_parse_afm($afm, $typeface, $encoding)) {
153 function _parse_afm($afm, $typeface, $encoding) { argument
155 $encoding_data = $g_manager_encodings->get_glyph_to_code_mapping($encoding);
H A Dfont.resolver.class.php37 function font_resolved($family, $weight, $style, $encoding) { argument
42 isset($this->ps_fonts[$family][$weight][$style][$encoding]);
51 function resolve_font($family, $weight, $style, $encoding) { argument
52 if (!$this->font_resolved($family, $weight, $style, $encoding)) {
56 return $this->ps_fonts[$family][$weight][$style][$encoding];
110 if (isset($this->overrides[$encoding]) &&
111 isset($this->overrides[$encoding][$family]) &&
112 isset($this->overrides[$encoding][$family][$weight]) &&
114 return $this->overrides[$encoding][$family][$weight][$style];
121 if (preg_match($override['mask'], $encoding)) {
[all …]
H A Dfont_factory.class.php28 function &getTrueType($typeface, $encoding) { argument
29 if (!isset($this->fonts[$typeface][$encoding])) {
33 $font = FontTrueType::create($fontfile, $encoding);
39 $this->fonts[$typeface][$encoding] = $font;
42 return $this->fonts[$typeface][$encoding];
45 function &get_type1($name, $encoding) { argument
46 if (!isset($this->fonts[$name][$encoding])) {
49 $font =& FontType1::create($name, $encoding, $g_font_resolver, $this->error_message);
55 $this->fonts[$name][$encoding] = $font;
58 return $this->fonts[$name][$encoding];
/plugin/html2pdf/html2pdf/html2ps/fpdf/
H A Dfpdf.php1428 $encoding);
1436 function _MakeFontKey($family, $encoding) { argument
1437 return $family.'-'.$encoding;
1440 function GetFontAscender($name, $encoding) { argument
1441 $fontkey = $this->_MakeFontKey($name, $encoding);
1442 $this->_LoadFont($fontkey, $name, $encoding, '');
1446 function GetFontDescender($name, $encoding) { argument
1447 $fontkey = $this->_MakeFontKey($name, $encoding);
1448 $this->_LoadFont($fontkey, $name, $encoding, '');
2001 function SetFont($family,$encoding, $style='',$size=0) { argument
[all …]
/plugin/mantis/lib/
H A Dchangelog9 - soap_server: fixed bug causing charset encoding not to be passed to the parser
10 - soap_fault: added default encoding to the fault serialization
17 - soapclient: get xml character encoding from HTTP Content-Type header if provided, e.g. text/xml;c…
31 - nusoap_base: change documentation of soap_defencoding to specify it is the encoding for outgoing …
35 - soap_server: read encoding from _SERVER if available
57 - soap_server: add gzip encoding support for outgoing messages
88 > Changes for multiple encoding sytles as previously posted
233 - soapclient: support document style and literal encoding when not using WSDL
254 - soap_transport_http: ignore Content-Length when chunked encoding is used
283 - soap_server: support literal encoding (with RPC style)
[all …]
H A Dclass.soap_transport_http.php26 var $encoding = ''; variable in soap_transport_http
562 $this->encoding = $enc;
H A Dnusoap.php712 '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">".
2133 var $encoding = ''; variable in soap_transport_http
2669 $this->encoding = $enc;
6487 * @param string $encoding character encoding scheme of message
6492 function nusoap_parser($xml,$encoding='UTF-8',$method='',$decode_utf8=true){ argument
6495 $this->xml_encoding = $encoding;
6507 if (strtoupper($xml_encoding) != $encoding) {
6508 …$err = "Charset from HTTP Content-Type '" . $encoding . "' does not match encoding from XML declar…
6510 if ($encoding != 'ISO-8859-1' || strtoupper($xml_encoding) != 'UTF-8') {
6524 $this->debug('Entering nusoap_parser(), length='.strlen($xml).', encoding='.$encoding);
H A Dclass.nusoap_base.php712 '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">".
H A Dclass.soap_parser.php55 * @param string $encoding character encoding scheme of message
60 function nusoap_parser($xml,$encoding='UTF-8',$method='',$decode_utf8=true){ argument
63 $this->xml_encoding = $encoding;
75 if (strtoupper($xml_encoding) != $encoding) {
76 …$err = "Charset from HTTP Content-Type '" . $encoding . "' does not match encoding from XML declar…
78 if ($encoding != 'ISO-8859-1' || strtoupper($xml_encoding) != 'UTF-8') {
92 $this->debug('Entering nusoap_parser(), length='.strlen($xml).', encoding='.$encoding);
H A Dnusoapmime.php305 var $encoding = 'base64'; variable in nusoap_server_mime
308 $this->encoding = $enc;
380 $params['encoding'] = $this->encoding; // BSP
389 $params['encoding'] = $this->encoding; // BSP
/plugin/mp3play2/
H A DREADME.md91 <?xml version="1.0" encoding="UTF-8"?>
/plugin/txt2tags/
H A Dtxt2tags.class.php91 var $encoding = "UTF-8"; # assume default encoding if none in file variable in T2T
199 $html = sprintf($this->snippets['html'], $this->title, $this->encoding,
216 case "encoding" : $this->encoding = trim($val); break;
232 if(preg_match('/--encoding[= ]+(\\S+)/', $val, $n)) $this->encoding = $n[1];
/plugin/sphinxsearch/
H A Dchangelog16 * Added document encoding detection
/plugin/jcapture/lib/
H A Dcommons-codec-1.3.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dcommons-codec-1.3.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...

1...<<1112