Home
last modified time | relevance | path

Searched refs:encoding (Results 226 – 250 of 300) sorted by last modified time

12345678910>>...12

/plugin/plantuml/
H A Dplugin.history.txt3 …* Fixed bug: PlantUML server rendering was not working due to encoding (slashes were converted to …
/plugin/pgn4web/pgn4web/
H A DREADME.txt439 try patching manually the pgn4web.js, search for "// patch: pgn encoding" and
H A Dpgn-standard-proposed-supplement.txt25 encoding time information relating to each move.
27 Without the possibility of encoding time information in PGN its usefulness in
36 based definitions for encoding chess games. While this work is interesting, as
/plugin/tuxquote/
H A Dquotes.txt4125 The word is the only system of encoding thoughts - the only medium - that refuses to dissolve in th…
/plugin/sviewer/
H A Dsyntax.php128 $xml.=sprintf('<?xml version="1.0" encoding="UTF-8"?>
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetched_data.url.class.php10 $encoding = $this->_detect_encoding_using_meta($this->content);
14 if (is_null($encoding)) {
17 $encoding = strtolower($matches[1]);
24 if (is_null($encoding)) { $encoding = "iso-8859-1"; }
26 return $encoding;
H A Dfilter.data.encoding.class.php3 function DataFilterEncoding($encoding) { argument
4 $this->encoding = $encoding;
8 return $this->encoding;
15 if (empty($this->encoding)) {
16 $encoding = $data->detect_encoding();
18 if (is_null($encoding)) {
19 $encoding = DEFAULT_ENCODING;
22 $data->set_content($converter->to_utf8($data->get_content(), $encoding));
25 $data->set_content($converter->to_utf8($data->get_content(), $this->encoding));
31 function _convert(&$data, $encoding) { argument
H A Doutput._interface.class.php35 function font_ascender($name, $encoding) {} argument
41 function font_descender($name, $encoding) {} argument
61 function setfont($name, $encoding, $size) {} argument
70 function stringwidth($string, $name, $encoding, $size) { } argument
H A Doutput.png.class.php126 function _setFont($typeface, $encoding, $size) { argument
130 $font = $this->_font_factory->getTrueType($typeface, $encoding);
134 'encoding' => $encoding,
323 function font_ascender($name, $encoding) { argument
324 $font = $this->_font_factory->getTrueType($name, $encoding);
328 function font_descender($name, $encoding) { argument
329 $font = $this->_font_factory->getTrueType($name, $encoding);
479 function setfont($name, $encoding, $size) { argument
480 $this->_setFont($name, $encoding, $size);
528 function stringwidth($string, $name, $encoding, $size) { argument
[all …]
H A Dpdf.fpdf.makefont.php302 function MakeFontCMap($encoding) { argument
305 $ref = $manager->get_encoding_vector($encoding);
H A Dpdf.fpdf.php1501 function _LoadFont($fontkey, $family, $encoding) { argument
1519 $encoding);
1526 function _MakeFontKey($family, $encoding) { argument
1527 return $family.'-'.$encoding;
1530 function GetFontAscender($name, $encoding) { argument
1531 $fontkey = $this->_MakeFontKey($name, $encoding);
1532 $this->_LoadFont($fontkey, $name, $encoding, '');
1536 function GetFontDescender($name, $encoding) { argument
1537 $fontkey = $this->_MakeFontKey($name, $encoding);
1989 function SetFont($family, $encoding, $size) { argument
[all …]
H A DChangeLog207 * Fixed: number of characters not found in standard encoding
406 * New: support for custom automatically generated encoding vector
471 * Fixed: koi8-r encoding was not supported by PDFLIB
535 there are no registered encoding vectors at all
876 predefined encoding vectors (e.g. Japanese/Chinese symbols)
890 encoding vectors
1412 * viewport.pdflib.php: non iso-8859-1 encoding support
1415 encoding
1417 * box.text.php: encoding-override directive was broken
1644 encoding: utf-8 cause errors
[all …]
H A Dbox.inline.php173 $encoding = 'iso-8859-1';
205 $text_box->add_subword($word, $encoding, $hyphens);
216 if (isset($mapping[$encoding])) {
217 $word .= $mapping[$encoding];
223 $text_box->add_subword($word, $encoding, $hyphens);
227 list($encoding, $add) = each($mapping);
229 $word = $mapping[$encoding];
237 $text_box->add_subword($word, $encoding, $hyphens);
H A Dconverter.class.php15 function to_utf8($string, $encoding) { argument
16 return iconv(strtoupper($encoding), "UTF-8", $string);
21 function apply_aliases($encoding) { argument
24 if (isset($g_encoding_aliases[$encoding])) {
25 return $g_encoding_aliases[$encoding];
28 return $encoding;
31 function to_utf8($html, $encoding) { argument
34 $encoding = $this->apply_aliases($encoding);
36 if ($encoding === 'iso-8859-1') {
38 } elseif ($encoding === 'utf-8') {
[all …]
H A Dpipeline.factory.class.php6 function &create_default_pipeline($encoding, $filename) { argument
24 $pipeline->data_filters[] = new DataFilterUTF8($encoding);
H A Dbox.img.php169 $this->encoding = DEFAULT_ENCODING;
229 $this->encoding = DEFAULT_ENCODING;
H A Dfetched_data.file.class.php14 $encoding = $this->_detect_encoding_using_meta($this->content);
18 if (is_null($encoding)) { $encoding = "iso-8859-1"; }
20 return $encoding;
H A Dfilter.data.ucs2.class.php6 function _convert(&$data, $encoding) { argument
8 $data->set_content($converter->to_ucs2($data->get_content(), $encoding));
H A Dfilter.data.utf8.class.php6 function _convert(&$data, $encoding) { argument
8 $data->set_content($converter->to_utf8($data->get_content(), $encoding));
H A Dmanager.encoding.php104 return $g_encoding_aliases[$encoding];
107 return $encoding;
123 function get_encoding_glyphs($encoding) { argument
140 function get_encoding_vector($encoding) { argument
141 $encoding = $this->get_canonized_encoding_name($encoding);
144 if (isset($g_utf8_converters[$encoding])) {
147 $vector = $this->_encodings[$encoding];
202 function get_ps_encoding_vector($encoding) { argument
205 $result = "/".$encoding." [ \n";
221 function is_custom_encoding($encoding) { argument
[all …]
H A Doutput.fastps.class.php64 function _findfont($name, $encoding) { argument
65 $font =& $this->font_factory->get_type1($name, $encoding);
72 if (!isset($this->used_encodings[$encoding])) {
73 $this->used_encodings[$encoding] = true;
92 function font_ascender($name, $encoding) { argument
93 $font = $this->_findfont($name, $encoding);
101 function font_descender($name, $encoding) { argument
102 $font = $this->_findfont($name, $encoding);
257 function setfont($name, $encoding, $size) { argument
259 $this->currentfont = $this->_findfont($name, $encoding);
[all …]
H A Doutput.fpdf.class.php148 function findfont($name, $encoding) { argument
153 function font_ascender($name, $encoding) { argument
154 return $this->pdf->GetFontAscender($name, $encoding);
157 function font_descender($name, $encoding) { argument
158 return $this->pdf->GetFontDescender($name, $encoding);
353 function setfont($name, $encoding, $size) { argument
354 $this->pdf->SetFont($this->findfont($name, $encoding), $encoding, $size);
380 function stringwidth($string, $name, $encoding, $size) { argument
381 $this->setfont($name, $encoding, $size);
H A Doutput.pcl.class.php268 function font_ascender($name, $encoding) {} argument
269 function font_descender($name, $encoding) {} argument
283 function setfont($name, $encoding, $size) {} argument
288 function stringwidth($string, $name, $encoding, $size) { } argument
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXMLDocument.php145 function setEncoding($encoding) { argument
146 $this->tag->setAttribute("encoding", $encoding);
/plugin/html2pdf/html2pdf/html2ps/demo/
H A Dhtml2ps.php37 'encoding' => get_var('encoding', $_REQUEST, 255, ""),
99 $pipeline->data_filters[] = new DataFilterUTF8($GLOBALS['g_config']['encoding']);

12345678910>>...12