本文整理汇总了PHP中Zend_Pdf_Element_String类的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Pdf_Element_String类的具体用法?PHP Zend_Pdf_Element_String怎么用?PHP Zend_Pdf_Element_String使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Zend_Pdf_Element_String类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: testUnescapeOctal
/**
* @group ZF-9450
*/
public function testUnescapeOctal()
{
$input = array(0304 => '\\304', 0326 => '\\326', 0334 => '\\334');
foreach ($input as $k => $v) {
$this->assertEquals(Zend_Pdf_Element_String::unescape($v), chr($k), 'expected German Umlaut');
}
}
开发者ID:netvlies,项目名称:zf,代码行数:10,代码来源:StringTest.php
示例2: drawText
/**
* Draw a line of text at the specified position.
*
* @param string $text
* @param float $x
* @param float $y
* @param string $charEncoding (optional) Character encoding of source text.
* Defaults to current locale.
* @throws Zend_Pdf_Exception
* @return Zend_Pdf_Page
*/
public function drawText($text, $x, $y, $charEncoding = '')
{
if ($this->_font === null) {
//require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception('Font has not been set');
}
$this->_addProcSet('Text');
$textObj = new Zend_Pdf_Element_String($this->_font->encodeString($text, $charEncoding));
$xObj = new Zend_Pdf_Element_Numeric($x);
$yObj = new Zend_Pdf_Element_Numeric($y);
$this->_contents .= "BT\n" . $xObj->toString() . ' ' . $yObj->toString() . " Td\n" . $textObj->toString() . " Tj\n" . "ET\n";
return $this;
}
开发者ID:chaimvaid,项目名称:linet3,代码行数:24,代码来源:Page.php
示例3: _readString
/**
* Read string PDF object
* Also reads trailing ')' from a pdf stream
*
* @return Zend_Pdf_Element_String
* @throws Zend_Pdf_Exception
*/
private function _readString()
{
$start = $this->offset;
$openedBrackets = 1;
$this->offset += strcspn($this->data, '()\\', $this->offset);
while ($this->offset < strlen($this->data)) {
switch (ord($this->data[$this->offset])) {
case 0x28:
// '(' - opened bracket in the string, needs balanced pair.
$this->offset++;
$openedBrackets++;
break;
case 0x29:
// ')' - pair to the opened bracket
$this->offset++;
$openedBrackets--;
break;
case 0x5c:
// '\\' - escape sequence, skip next char from a check
$this->offset += 2;
}
if ($openedBrackets == 0) {
break;
// end of string
}
$this->offset += strcspn($this->data, '()\\', $this->offset);
}
if ($openedBrackets != 0) {
require_once 'Zend/Pdf/Exception.php';
throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Unexpected end of file while string reading. Offset - 0x%X. \')\' expected.', $start));
}
return new Zend_Pdf_Element_String(Zend_Pdf_Element_String::unescape(substr($this->data, $start, $this->offset - $start - 1)));
}
开发者ID:travisj,项目名称:zf,代码行数:40,代码来源:StringParser.php
示例4: drawText
/**
* Draw a line of text at the specified position.
*
* @param string $text
* @param float $x
* @param float $y
* @throws Zend_Pdf_Exception
*/
public function drawText($text, $x, $y)
{
if ($this->_font === null) {
throw new Zend_Pdf_Exception('Font has not been set');
}
$this->_addProcSet('Text');
$textObj = new Zend_Pdf_Element_String($text);
$xObj = new Zend_Pdf_Element_Numeric($x);
$yObj = new Zend_Pdf_Element_Numeric($y);
$this->_contents .= "BT\n" . $xObj->toString() . ' ' . $yObj->toString() . " Td\n" . $textObj->toString() . " Tj\n" . "ET\n";
}
开发者ID:jorgenils,项目名称:zend-framework,代码行数:19,代码来源:Page.php
示例5: testUnescape
public function testUnescape()
{
$this->assertEquals(Zend_Pdf_Element_String::unescape("\\n\\r\\t\\b\\f\\(\\)\\\\ \nsome \\\ntext"), "\n\r\t\f()\\ \nsome text");
}
开发者ID:lortnus,项目名称:zf1,代码行数:4,代码来源:StringTest.php
示例6: _readString
/**
* Read string PDF object
* Also reads trailing ')' from a pdf stream
*
* @return Zend_Pdf_Element_String
* @throws Zend_Pdf_Exception
*/
private function _readString()
{
$start = $this->_current;
$openedBrackets = 1;
while ($this->_current < strlen($this->_pdfString)) {
switch (ord($this->_pdfString[$this->_current])) {
case 0x28:
// '(' - opened bracket in the string, needs balanced pair.
$openedBrackets++;
break;
case 0x29:
// ')' - pair to the opened bracket
$openedBrackets--;
break;
case 0x5c:
// '\\' - escape sequence, skip next char from a check
$this->_current++;
}
$this->_current++;
if ($openedBrackets == 0) {
break;
// end of string
}
}
if ($openedBrackets != 0) {
throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Unexpected end of file while string reading. Offset - 0x%X. \')\' expected.', $start));
}
return new Zend_Pdf_Element_String(Zend_Pdf_Element_String::unescape(substr($this->_pdfString, $start, $this->_current - $start - 1)));
}
开发者ID:jorgenils,项目名称:zend-framework,代码行数:36,代码来源:Parser.php
示例7: _readString
private function _readString()
{
$start = $this->offset;
$openedBrackets = 1;
$this->offset += strcspn($this->data, '()\\', $this->offset);
while ($this->offset < strlen($this->data)) {
switch (ord($this->data[$this->offset])) {
case 0x28:
$this->offset++;
$openedBrackets++;
break;
case 0x29:
$this->offset++;
$openedBrackets--;
break;
case 0x5c:
$this->offset += 2;
}
if ($openedBrackets == 0) {
break;
}
$this->offset += strcspn($this->data, '()\\', $this->offset);
}
if ($openedBrackets != 0) {
throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Unexpected end of file while string reading. Offset - 0x%X. \')\' expected.', $start));
}
return new Zend_Pdf_Element_String(Zend_Pdf_Element_String::unescape(substr($this->data, $start, $this->offset - $start - 1)));
}
开发者ID:subashemphasize,项目名称:test_site,代码行数:28,代码来源:Pdf_Pack.php
注:本文中的Zend_Pdf_Element_String类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论