Home
last modified time | relevance | path

Searched refs:sprintf (Results 326 – 350 of 1115) sorted by path

1...<<11121314151617181920>>...45

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DSizeConverter.php56 $this->logger->warning(sprintf('Invalid size representation "%s"', $size), ['context' => LogContext::CSS_SIZE_CONVERSION]);
H A DTTFontFile.php33 return sprintf("%05s", strtoupper(dechex($unicode_dec)));
231 throw new \Mpdf\Exception\FontException(sprintf('Unable to open font file "%s"', $file));
268 throw new \Mpdf\Exception\FontException(sprintf('Fonts with postscript outlines are not supported (%s)', $file));
272 throw new \Mpdf\Exception\FontException(sprintf('TTCfontID for a TrueType Collection is not defined in mPDF "fontdata" configuration (%s)', $file));
276 throw new \Mpdf\Exception\FontException(sprintf('Not a TrueType font: version=%s)', $version));
282 throw new \Mpdf\Exception\FontException(sprintf('Error parsing TrueType Collection: version=%s - (%s)', $version, $file));
335 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1])));
563 throw new \Mpdf\Exception\FontException(sprintf('Unable to open file "%s"', $file));
578 throw new \Mpdf\Exception\FontException(sprintf("Error parsing TrueType Collection: version=%s (%s)", $version, $file));
631 throw new \Mpdf\Exception\FontException(sprintf('Fon
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/
H A DArrays.php15 throw new \InvalidArgumentException(sprintf('Array does not contain key "%s"', $key));
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DBackgroundWriter.php192 $this->writer->write(sprintf('/BBox [0 0 %.3F %.3F]', $orig_w, $orig_h));
195 $this->writer->write(sprintf('/XStep %.3F', $orig_w));
197 $this->writer->write(sprintf('/XStep %d', 99999));
201 $this->writer->write(sprintf('/YStep %.3F', $orig_h));
203 $this->writer->write(sprintf('/YStep %d', 99999));
207 $this->writer->write(sprintf('/Matrix [1 0 0 -1 %.3F %.3F]', $adj_x, $adj_y + $orig_h));
208 $s = sprintf('q %.3F 0 0 %.3F %.3F %.3F cm /FO%d Do Q', $orig_w / $fo_w, -$orig_h / $fo_h, -($orig_w / $fo_w) * $wmf_x, ($orig_w / $fo_w) * $wmf_y, $image_id);
210 $this->writer->write(sprintf('/Matrix [1 0 0 1 %.3F %.3F]', $adj_x, $adj_y));
211 $s = sprintf('q %.3F 0 0 %.3F 0 0 cm /I%d Do Q', $orig_w, $orig_h, $image_id);
245 $bd[] = sprintf('
[all...]
H A DBookmarkWriter.php106 $this->writer->write(sprintf('/Dest [%d 0 R /XYZ 0 %.3F null]', 1 + 2 * ($o['p']), ($h - $o['y']) * Mpdf::SCALE));
117 $this->writer->write(sprintf('/F %d', $style));
121 $this->writer->write(sprintf('/C [%.3F %.3F %.3F]', ($col[0] / 255), ($col[1] / 255), ($col[2] / 255)));
H A DColorWriter.php38 $this->writer->write(sprintf('/C1 [%.3F %.3F %.3F %.3F] ', $color['c'] / 100, $color['m'] / 100, $color['y'] / 100, $color['k'] / 100));
H A DFontWriter.php201 $toUnistring .= sprintf("<%02s> <%02s%02s%02s%02s>\n", strtoupper(dechex($cp)), strtoupper(dechex($l1)), strtoupper(dechex($h1)), strtoupper(dechex($l2)), strtoupper(dechex($h2)));
203 $toUnistring .= sprintf("<%02s> <%04s>\n", strtoupper(dechex($cp)), strtoupper(dechex($u)));
252 // $toUni .= sprintf("<00> <%02s>\n", strtoupper(dechex(count($font['subsets'][$sfid])-1)));
438 throw new \Mpdf\MpdfException(sprintf('Unsupported font type: %s (%s)', $type, $name));
H A DMetadataWriter.php60 $uuid = sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', random_int(0, 0xffff), random_int(0, 0xffff), random_int(0, 0xffff), random_int(0, 0x0fff) | 0x4000, random_int(0, 0x3fff) | 0x8000, random_int(0, 0xffff), random_int(0, 0xffff), random_int(0, 0xffff));
126 throw new \Mpdf\MpdfException(sprintf('PDFA version (%s) is not valid. (Use: 1-B, 3-B, etc.)', $this->mpdf->PDFAversion));
233 throw new \Mpdf\MpdfException(sprintf('Unable to find ICC profile "%s"', $this->mpdf->ICCProfile));
296 throw new \Mpdf\MpdfException(sprintf('Cannot access associated file - %s', $file['path']));
521 $rect = sprintf('%.3F %.3F %.3F %.3F', $pl[0], $pl[1], $pl[0] + $pl[2], $pl[1] - $pl[3]);
526 $annot .= ' /NM ' . $this->writer->string(sprintf('%04u-%04u', $n, $key));
548 $annot .= sprintf(' /Dest [%d 0 R /XYZ 0 %.3F null]>>', 1 + 2 * $p, $htarg);
564 $annot .= sprintf(' /Dest [%d 0 R /XYZ 0 %.3F null]>>', 1 + 2 * $l[0], $htarg - $l[1] * Mpdf::SCALE);
633 $rect = sprintf('%.3F %.3F %.3F %.3F', $a, $b - $h, $a + $w, $b);
639 $annot .= ' /NM ' . $this->writer->string(sprintf('
[all...]
H A DPageWriter.php150 $this->writer->write(sprintf('/MediaBox [0 0 %.3F %.3F]', $hPt, $wPt));
160 $this->writer->write(sprintf('/BleedBox [%.3F %.3F %.3F %.3F]', $x0, $y0, $x1, $y1));
163 $this->writer->write(sprintf('/TrimBox [%.3F %.3F %.3F %.3F]', $owidthPt_TB, $owidthPt_LR, $hPt - $owidthPt_TB, $wPt - $owidthPt_LR));
175 $this->writer->write(sprintf('/MediaBox [0 0 %.3F %.3F]', $wPt, $hPt));
183 $this->writer->write(sprintf('/BleedBox [%.3F %.3F %.3F %.3F]', $x0, $y0, $x1, $y1));
186 $this->writer->write(sprintf('/TrimBox [%.3F %.3F %.3F %.3F]', $owidthPt_LR, $owidthPt_TB, $wPt - $owidthPt_LR, $hPt - $owidthPt_TB));
280 $this->writer->write(sprintf('/MediaBox [0 0 %.3F %.3F]', $defwPt, $defhPt));
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php189 sprintf(
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
H A DReflectionHelper.php71 sprintf(
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdfTplTrait.php56 throw new \InvalidArgumentException(\sprintf(
128 \sprintf(
204 . \sprintf('%.2F w', $this->LineWidth * $this->k) . "\n";
207 $buffer .= \sprintf("BT /F%d %.2F Tf ET\n", $this->CurrentFont['i'], $this->FontSizePt);
383 $this->_out(\sprintf('%.2F w', $width * $this->k));
394 $this->_out(\sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
405 $this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
421 $this->_put(\sprintf('/BBox[0 0 %.2F %.2F]', $template['width'] * $this->k, $template['height'] * $this->k));
H A DFpdiTrait.php160 \sprintf('Invalid type in $file parameter (%s)', \gettype($file))
198 \sprintf('No pdf reader with the given id (%s) exists.', $id)
249 \sprintf('Box name is invalid: "%s"', $box)
265 \sprintf("Page doesn't have a boundary box (%s).", $box),
427 \sprintf(
495 $this->_put(\rtrim(\rtrim(\sprintf('%.5F', $value->value), '0'), '.') . ' ', false);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/
H A DAbstractReader.php69 \sprintf(
H A DCrossReference.php163 \sprintf('Object (id:%s) not found.', $objectNumber),
178 \sprintf('Object (id:%s) not found at location (%s).', $objectNumber, $offset),
186 \sprintf('Wrong object found, got %s while %s was expected.', $object->objectNumber, $objectNumber),
H A DLineReader.php164 \sprintf('Unexpected data in xref table (%s)', \implode(' ', $pieces)),
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DStreamReader.php323 \sprintf('Offset (%s) out of range (length: %s)', $offset, $this->bufferLength)
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfArray.php78 \sprintf('Array with %s entries expected.', $size),
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/
H A DPdfReader.php130 \sprintf(
/plugin/dx/src/
H A DStandardize.php105 throw new RuntimeException(sprintf('Directory "%s" was not created', $dirPath));
/plugin/eclipseupdateurl/
H A Dsyntax.php150 $renderer->doc .= sprintf("%.2f&nbsp;MB", ($PLUGIN['download-size'] / 1024));
/plugin/editions/
H A Daction.php114 $editionLinkTitle = sprintf($this->getLang('editionLinkTitle'), ucfirst($edition));
/plugin/editsections2/
H A Daction.php128 $markers_replace[] = sprintf(
/plugin/editx/
H A Daction.php225 $this->errors[] = sprintf( $this->getLang('rp_msg_old_noexist'), $opts['oldpage'] );
227 $this->errors[] = sprintf( $this->getLang('rp_msg_auth'), $opts['oldpage'] );
229 $this->errors[] = sprintf( $this->getLang('rp_msg_locked'), $opts['oldpage'] );
240 $this->errors[] = sprintf( $this->getLang('rp_msg_auth'), $opts['newpage'] );
242 $this->errors[] = sprintf( $this->getLang('rp_msg_locked'), $opts['newpage'] );
265 … $summary = sprintf( $this->getLang('rp_newsummary'), $opts['oldpage'], $opts['newpage'] );
270 sprintf( $this->getLang('rp_oldsummary'), $opts['oldpage'], $opts['newpage'] );
307 $this->errors[] = sprintf( $this->getLang('dp_msg_auth'), $opts['oldpage'] );
312 sprintf( $this->getLang('dp_oldsummaryx'), $opts['summary'] ) :
324 $msg = sprintf( $this->getLang('dp_msg_success'), $opts['oldpage'] );
[all …]
/plugin/elasticsearch/action/
H A Dsearch.php368 $pagecreateinfo = sprintf($lang['searchcreatepage'], $QUERY);
397 echo '<h2>' . sprintf($this->getLang('totalfound'), $found) . '</h2>';
431 echo sprintf(

1...<<11121314151617181920>>...45