PHPRtfLite::setPaperFormat PHP Метод

setPaperFormat() публичный Метод

Sets the paper format.
public setPaperFormat ( string $paperFormat )
$paperFormat string
    public function setPaperFormat($paperFormat)
    {
        $defaultUnit = PHPRtfLite_Unit::getGlobalUnit();
        $paperWidth = PHPRtfLite_Paper_Format::getPaperWidthByPaperFormat($paperFormat);
        $this->_paperWidth = PHPRtfLite_Unit::convertTo($paperWidth, PHPRtfLite_Unit::UNIT_MM, $defaultUnit);
        $paperHeight = PHPRtfLite_Paper_Format::getPaperHeightByPaperFormat($paperFormat);
        $this->_paperHeight = PHPRtfLite_Unit::convertTo($paperHeight, PHPRtfLite_Unit::UNIT_MM, $defaultUnit);
    }

Usage Example

Пример #1
0
<?php

require_once 'src/PHPRtfLite.php';
PHPRtfLite::registerAutoloader();
require_once 'includes/cars_pdo.php';
if (isset($_POST['download'])) {
    try {
        $rtf = new PHPRtfLite();
        // Установить свойства страницы
        $rtf->setMargins(2.54, 2.54, 2.54, 2.54);
        $rtf->setPaperFormat(PHPRtfLite::PAPER_LETTER);
        // Добавить футер
        $footer = $rtf->addFooter();
        $fontFooter = new PHPRtfLite_Font(8, 'Arial', '#000000');
        $alignFooter = new PHPRtfLite_ParFormat(PHPRtfLite_ParFormat::TEXT_ALIGN_CENTER);
        $footer->writeText('Used cars for sale - <pagenum>', $fontFooter, $alignFooter);
        // Определить шрифты
        $fontH1 = new PHPRtfLite_Font(16, 'Arial', '#4E9C93');
        $fontH2 = new PHPRtfLite_Font(14, 'Arial', '#4E9C93');
        $fontP = new PHPRtfLite_Font(12, 'Helvetica', '#000000');
        // Вертикальное форматирование текста
        $formatH1 = new PHPRtfLite_ParFormat();
        $formatH1->setSpaceAfter(8);
        $formatH2 = new PHPRtfLite_ParFormat();
        $formatH2->setSpaceAfter(6);
        $formatP = new PHPRtfLite_ParFormat();
        $formatP->setSpaceAfter(3);
        // Содержание страницы
        $section = $rtf->addSection();
        $section->writeText('Used Cars for Sale', $fontH1, $formatH1);
        while ($row = getRow($result)) {