本文整理汇总了PHP中PHPRtfLite::setMargins方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPRtfLite::setMargins方法的具体用法?PHP PHPRtfLite::setMargins怎么用?PHP PHPRtfLite::setMargins使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPRtfLite
的用法示例。
在下文中一共展示了PHPRtfLite::setMargins方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: PHPRtfLite
<?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)) {
示例2: PHPRtfLite
}*/
/*$project_id = $_GET["project_id"];
$ps_id = $_GET["ps_id"];
$qup = mysql_query("select * from t_project where project_id = $project_id");
$project_info = mysql_fetch_object($qup);
$qup = mysql_query("select *,date_format(ps_test_tanggal,'%d-%b-%Y') ps_test_tanggal2 from t_project_source where ps_id = $ps_id");
$project_source_info = mysql_fetch_object($qup);*/
}
// Init
$null = null;
PHPRtfLite::registerAutoloader();
$parFormat = new PHPRtfLite_ParFormat();
$rtf = new PHPRtfLite();
//setLandscape()
$rtf->setLandscape();
//$rtf->setMargins(3,2,3,2);
//_createHeader($project_info);
$rtf->setMargins(3, 2, 3, 2);
$sect =& $rtf->addSection();
//_createTitle($project_info);
_createTable();
//
/*$sect = &$rtf->addSection();
_createTable(3,3);
//
$sect = &$rtf->addSection();
_createUraian();*/
$namafile = "Schedule.rtf";
$rtf->sendRtf($namafile);