本文整理汇总了PHP中FPDF::SetFont方法的典型用法代码示例。如果您正苦于以下问题:PHP FPDF::SetFont方法的具体用法?PHP FPDF::SetFont怎么用?PHP FPDF::SetFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FPDF
的用法示例。
在下文中一共展示了FPDF::SetFont方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: PurchaseOrderModel
function export_order($id)
{
global $FANNIE_OP_DB, $FANNIE_ROOT;
$dbc = FannieDB::get($FANNIE_OP_DB);
$order = new PurchaseOrderModel($dbc);
$order->orderID($id);
$order->load();
$items = new PurchaseOrderItemsModel($dbc);
$items->orderID($id);
$vendor = new VendorsModel($dbc);
$vendor->vendorID($order->vendorID());
$vendor->load();
$contact = new VendorContactModel($dbc);
$contact->vendorID($order->vendorID());
$contact->load();
if (!class_exists('FPDF')) {
include_once $FANNIE_ROOT . 'src/fpdf/fpdf.php';
}
$pdf = new FPDF('P', 'mm', 'Letter');
$pdf->AddPage();
$pdf->SetFont('Arial', '', '12');
$pdf->Cell(100, 5, 'Vendor: ' . $vendor->vendorName(), 0, 0);
$pdf->Cell(100, 5, 'Date: ' . date('Y-m-d'), 0, 0);
$pdf->Ln();
$pdf->Cell(100, 5, 'Phone: ' . $contact->phone(), 0, 0);
$pdf->Cell(100, 5, 'Fax: ' . $contact->fax(), 0, 0);
$pdf->Ln();
$pdf->Cell(100, 5, 'Email: ' . $contact->email(), 0, 0);
$pdf->Cell(100, 5, 'Website: ' . $contact->website(), 0, 0);
$pdf->Ln();
$pdf->MultiCell(0, 5, "Ordering Info:\n" . $contact->notes(), 'B');
$pdf->Ln();
$cur_page = 0;
$pdf->SetFontSize(10);
foreach ($items->find() as $obj) {
if ($cur_page != $pdf->PageNo()) {
$cur_page = $pdf->PageNo();
$pdf->Cell(25, 5, 'SKU', 0, 0);
$pdf->Cell(20, 5, 'Order Qty', 0, 0);
$pdf->Cell(30, 5, 'Brand', 0, 0);
$pdf->Cell(65, 5, 'Description', 0, 0);
$pdf->Cell(20, 5, 'Case Size', 0, 0);
$pdf->Cell(20, 5, 'Est. Cost', 0, 0);
$pdf->Ln();
}
$pdf->Cell(25, 5, $obj->sku(), 0, 0);
$pdf->Cell(20, 5, $obj->quantity(), 0, 0, 'C');
$pdf->Cell(30, 5, $obj->brand(), 0, 0);
$pdf->Cell(65, 5, $obj->description(), 0, 0);
$pdf->Cell(20, 5, $obj->caseSize(), 0, 0, 'C');
$pdf->Cell(20, 5, sprintf('%.2f', $obj->caseSize() * $obj->unitCost() * $obj->quantity()), 0, 0);
$pdf->Ln();
}
$pdf->Output('order_export.pdf', 'D');
}
示例2: generarFolleto
public function generarFolleto()
{
$concursos = $this->concursoMapper->findConcurso("pinchosOurense");
$establecimientos = $this->establecimientoMapper->findAllValidados();
$pinchos = $this->pincho->all();
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 30);
$pdf->SetTextColor(85, 53, 20);
$pos_y = 10;
$pdf->Cell(0, 24, $concursos->getNombre(), 0, 0, "L");
$pdf->Ln();
$pdf->SetFont('Arial', '', 16);
$pdf->SetTextColor(0, 0, 0);
$pdf->MultiCell(0, 6, $concursos->getDescripcionConcurso(), 0, "L");
$pdf->SetTextColor(85, 53, 20);
$pdf->SetFont('Arial', 'B', 13);
$pdf->Cell(0, 24, "Establecimientos participantes", 0, 0, "L");
foreach ($establecimientos as $establecimiento) {
$pdf->Ln();
$pdf->SetFont('Arial', 'B', 13);
$pdf->SetTextColor(85, 53, 20);
$pdf->SetFillColor(182, 145, 107);
$pdf->Cell(0, 10, utf8_decode($establecimiento->getNombre()), 1, 0, "C", "false");
$pdf->Ln();
$pdf->SetFont('Arial', 'I', 13);
$pdf->SetTextColor(0, 0, 0);
$pdf->Cell(0, 10, utf8_decode($establecimiento->getDescripcion()), 0, 0, "L");
$pdf->Ln();
$pdf->Cell(0, 10, utf8_decode($establecimiento->getLocalizacion()), 0, 0, "L");
$pdf->Ln();
$pdf->Cell(0, 10, utf8_decode("Pincho:"), 0, 0, "L");
foreach ($pinchos as $pincho) {
if ($pincho->getEstablecimiento() == $establecimiento->getId()) {
$pdf->Ln();
$pdf->Cell(5);
$pdf->Cell(0, 10, utf8_decode($pincho->getNombre()), 0, 0, "L");
$pdf->Ln();
$pdf->Cell(5);
$pdf->Cell(0, 10, utf8_decode($pincho->getDescripcion()), 0, 0, "L");
$pdf->Ln();
$pdf->Cell(5);
if ($pincho->isCeliaco()) {
$pdf->Cell(0, 10, utf8_decode("Apto para celiaco"), 0, 0, "L");
} else {
$pdf->Cell(0, 10, utf8_decode("No apto para celiaco"), 0, 0, "L");
}
}
}
$pdf->Ln(5);
}
$pdf->Output("folleto.pdf", "D");
}
示例3: exportpdf
public function exportpdf()
{
if ($this->data['users']->role != "admin") {
exit;
}
$header = array('Full Name', 'User Name', 'E-mail', 'Gender', 'Address', 'Phone No', 'Mobile No', 'Profession');
$data = array();
$student = User::where('role', 'parent')->get();
foreach ($student as $value) {
$data[] = array($value->fullName, $value->username, $value->email, $value->gender, $value->address, $value->phoneNo, $value->mobileNo, $value->parentProfession);
}
$pdf = new FPDF();
$pdf->SetFont('Arial', '', 10);
$pdf->AddPage();
foreach ($header as $col) {
$pdf->Cell(40, 7, $col, 1);
}
$pdf->Ln();
foreach ($data as $row) {
foreach ($row as $col) {
$pdf->Cell(40, 6, $col, 1);
}
$pdf->Ln();
}
$pdf->Output();
exit;
}
示例4: preprocess
function preprocess()
{
if (FormLib::get_form_value('start', False) !== False) {
$pdf = new FPDF('P', 'in', 'Letter');
$pdf->SetMargins(0.5, 0.5, 0.5);
$pdf->SetAutoPageBreak(False, 0.5);
$pdf->AddPage();
$start = FormLib::get_form_value('start');
$x = 0.5;
$y = 0.5;
$pdf->AddFont('Gill', '', 'GillSansMTPro-Medium.php');
$pdf->SetFont('Gill', '', 16);
for ($i = 0; $i < 40; $i++) {
$current = $start + $i;
$pdf->SetXY($x, $y);
$pdf->Cell(1.75, 0.5, $current, 0, 0, 'C');
$pdf->Cell(1.75, 0.5, $current, 0, 0, 'C');
if ($i % 2 == 0) {
$x += 1.75 * 2 + 0.5;
} else {
$x = 0.5;
$y += 0.5;
}
}
$pdf->Close();
$pdf->Output("mem stickers {$start}.pdf", "I");
return False;
}
return True;
}
示例5: drawPDF
public function drawPDF()
{
$pdf = new \FPDF('L', 'mm', 'Letter');
$pdf->SetMargins(3.175, 3.175, 3.175);
$pdf->SetAutoPageBreak(false);
if (\COREPOS\Fannie\API\FanniePlugin::isEnabled('CoopDealsSigns')) {
$this->font = 'Gill';
$this->alt_font = 'GillBook';
define('FPDF_FONTPATH', dirname(__FILE__) . '/../../../modules/plugins2.0/CoopDealsSigns/noauto/fonts/');
$pdf->AddFont('Gill', '', 'GillSansMTPro-Medium.php');
}
$pdf->SetFont($this->font, '', 16);
$data = $this->loadItems();
$width = 136.52;
$height = 105;
$top = 90;
$left = 15;
$effective_width = $width - 2 * $left;
foreach ($data as $item) {
$pdf->AddPage();
$column = 1;
// right aligned
$price = $this->printablePrice($item);
$pdf->SetXY($left + $width * $column, $top);
$pdf->SetFontSize($this->SMALL_FONT);
$pdf->Cell($effective_width, 10, $item['brand'], 0, 1, 'C');
$pdf->SetX($left + $width * $column);
$pdf->SetFontSize($this->MED_FONT);
$pdf->MultiCell($effective_width, 12, $item['description'], 0, 'C');
$pdf->SetX($left + $width * $column);
$pdf->SetFontSize($this->BIG_FONT);
$pdf->Cell($effective_width, 25, $price, 0, 1, 'C');
$y_pos = $pdf->GetY();
if ($item['startDate'] != '' && $item['endDate'] != '') {
// intl would be nice
$datestr = $this->getDateString($item['startDate'], $item['endDate']);
$pdf->SetXY($left + $width * $column, $top + ($height - 40));
$pdf->SetFontSize($this->SMALL_FONT);
$pdf->Cell($effective_width, 20, $datestr, 0, 1, 'R');
}
if ($item['originName'] != '') {
$pdf->SetXY($left + $width * $column, $y_pos);
$pdf->SetFontSize($this->SMALL_FONT);
if (strlen($item['originName']) < 50) {
$pdf->Cell($effective_width, 20, $item['originName'], 0, 1, 'L');
} else {
$pdf->Cell($effective_width, 20, $item['originShortName'], 0, 1, 'L');
}
}
}
$pdf->Output('WfcProdSingle.pdf', 'I');
}
示例6: generate_pdf
private function generate_pdf($srcText, $dest)
{
// Set some document variables
$author = "";
$x = 50;
$text = "<<<EOT" . $srcText . "EOT";
// Create fpdf object
$pdf = new FPDF('P', 'pt', 'Letter');
// Set base font to start
$pdf->SetFont('Times', 'B', 24);
// Add a new page to the document
$pdf->addPage();
// Set the x,y coordinates of the cursor
$pdf->SetXY($x, 50);
// Write 'Simple PDF' with a line height of 1 at the current position
$pdf->Write(25, 'Simple PDF');
// Reset the font
$pdf->SetFont('Courier', 'I', 10);
// Set the font color
$pdf->SetTextColor(255, 0, 0);
// Reset the cursor, write again.
$pdf->SetXY($x, 75);
$pdf->Cell(0, 11, "By: {$author}", 'B', 2, 'L', false);
// Place an image on the pdf document
//$pdf->Image('graph.jpg', $x, 100, 150, 112.5, 'JPG');
// Reset font, color, and coordinates
$pdf->SetFont('Arial', '', 12);
$pdf->SetTextColor(0, 0, 0);
$pdf->SetXY($x, 250);
// Write out a long text blurb.
$pdf->write(13, $srcText);
// echo "<pre>";
// print_r($pdf);exit;
$fileName = substr($dest, 0, strpos($dest, '.')) . "_" . time() . '.pdf';
$pdf->Output($fileName, 'F');
}
示例7: pdf
function pdf()
{
$this->load->library('cfpdf');
$pdf = new FPDF('P', 'mm', 'A4');
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 'L');
$pdf->SetFontSize(14);
$pdf->Text(10, 10, 'LAPORAN TRANSAKSI');
$pdf->SetFont('Arial', 'B', 'L');
$pdf->SetFontSize(10);
$pdf->Cell(10, 10, '', '', 1);
$pdf->Cell(10, 7, 'No', 1, 0);
$pdf->Cell(27, 7, 'Tanggal', 1, 0);
$pdf->Cell(30, 7, 'Operator', 1, 0);
$pdf->Cell(38, 7, 'Total Transaksi', 1, 1);
// tampilkan dari database
$pdf->SetFont('Arial', '', 'L');
$data = $this->model_transaksi->laporan_default();
$no = 1;
$total = 0;
foreach ($data->result() as $r) {
$pdf->Cell(10, 7, $no, 1, 0);
$pdf->Cell(27, 7, $r->tanggal_transaksi, 1, 0);
$pdf->Cell(30, 7, $r->nama_lengkap, 1, 0);
$pdf->Cell(38, 7, $r->total, 1, 1);
$no++;
$total = $total + $r->total;
}
// end
$pdf->Cell(67, 7, 'Total', 1, 0, 'R');
$pdf->Cell(38, 7, $total, 1, 0);
$pdf->Output();
}
示例8: pdf
function pdf()
{
$this->load->library('cfpdf');
$pdf = new FPDF('P', 'mm', 'A4');
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 'L');
$pdf->Cell(10, 7, 'No', 1, 0);
$pdf->cell(30, 7, 'Tanggal', 1, 0);
$pdf->cell(30, 7, 'Operator', 1, 0);
$pdf->cell(38, 7, 'Total', 1, 1);
// tampilkan dari database
$pdf->SetFont('Arial', 'B', 'L');
$data = $this->model_transaksi->laporan_default();
$no = 1;
foreach ($data->result() as $d) {
$total = 0;
}
$pdf->SetFont('Arial', 'B', 'L');
$pdf->Cell(10, 7, $no, 1, 0);
$pdf->cell(30, 7, $d->tanggal_transaksi, 1, 0);
$pdf->cell(30, 7, $d->nama_lengkap, 1, 0);
$pdf->cell(38, 7, '', 1, 1);
// end
$pdf->cell(67, 7, 'total', 1, 0, 'L');
$pdf->cell(38, 7, '', 1, 0);
$pdf->Output();
}
示例9: CreatePDFRendering
private function CreatePDFRendering($name, $company, $file)
{
$pdf = new FPDF('L', 'pt', array(162, 288));
//2.25"x4"
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 22);
//name font style
$pdf->Cell(0, 22, $name, 0, 1, 'C');
//name
$pdf->Cell(0, 10, '', 0, 1, 'C');
//blank line
$pdf->SetFont('Arial', 'I', 16);
//company font style
$pdf->Cell(0, 16, $company, 0, 1, 'C');
//company name
$pdf->Cell(0, 28, '', 0, 1, 'C');
//blank line
$pdf->Image('images/logo.png', $pdf->GetX() + 165, $pdf->GetY(), 65);
if ($file == true) {
//set file name to hash of object
$fullpath = $this->savedirectory . md5(spl_object_hash($pdf)) . '.pdf';
$pdf->Output($fullpath, 'F');
$pdf->Close();
$cmd = 'lpr ' . $fullpath;
$cmdout = shell_exec($cmd);
return $fullpath;
} else {
return $pdf->Output();
}
}
示例10: execute
public function execute()
{
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont("helvetica", "B", 16);
$pdf->Cell(0, 10, "Hello world!", 0, 1);
$pdf->Ln();
$pdf->SetFont("helvetica", "", 12);
$pdf->SetFillColor(192, 192, 192);
$pdf->Cell(40, 10, "Back", 1, 0, "C", 1);
$pdf->Link(10, 30, 40, 10, "/demos");
$pdf->Output();
$this->output->disable();
}
示例11: EWD_UFAQ_Export_To_PDF
function EWD_UFAQ_Export_To_PDF()
{
require_once EWD_UFAQ_CD_PLUGIN_PATH . '/FPDF/fpdf.php';
if ($Category != "EWD_UFAQ_ALL_CATEGORIES") {
$category_array = array('taxonomy' => 'ufaq-category', 'field' => 'slug', 'terms' => $Category->slug);
}
$params = array('posts_per_page' => -1, 'post_type' => 'ufaq');
$faqs = get_posts($params);
$PDFPasses = array("FirstPageRun", "SecondPageRun", "Final");
foreach ($PDFPasses as $PDFRun) {
$pdf = new FPDF();
$pdf->AddPage();
if ($PDFRun == "SecondPageRun" or $PDFRun == "Final") {
$pdf->SetFont('Arial', 'B', 14);
$pdf->Cell(20, 10, "Page #");
$pdf->Cell(20, 10, "Article Title");
$pdf->Ln();
$pdf->SetFont('Arial', '', 12);
foreach ($ToC as $entry) {
$pdf->Cell(20, 5, " " . $entry['page']);
$pdf->MultiCell(0, 5, $entry['title']);
$pdf->Ln();
}
unset($ToC);
}
foreach ($faqs as $faq) {
$PostTitle = strip_tags(html_entity_decode($faq->post_title));
$PostText = strip_tags(html_entity_decode($faq->post_content));
$PostText = str_replace("[", "[", $PostText);
$PostText = str_replace("]", "]", $PostText);
$pdf->AddPage();
$Entry['page'] = $pdf->page;
$Entry['title'] = $PostTitle;
$pdf->SetFont('Arial', 'B', 15);
$pdf->MultiCell(0, 10, $PostTitle);
$pdf->Ln();
$pdf->SetFont('Arial', '', 12);
$pdf->MultiCell(0, 10, $PostText);
$ToC[] = $Entry;
unset($Entry);
}
if ($PDFRun == "FirstPageRun" or $PDFRun == "SecondPageRun") {
$pdf->Close();
}
if ($PDFRun == "Final") {
$pdf->Output('Ultimate-FAQ-Manual.pdf', 'D');
}
}
}
示例12: SetFont
public function SetFont($family, $style = '', $size = 0)
{
if ($family != '') {
$f = strtolower($family);
$s = strtoupper($style);
if (strpos($s, 'U') !== false) {
$s = str_replace('U', '', $s);
}
if ($s == 'IB') {
$s = 'BI';
}
if ($this->FontFamily == $f && $this->FontStyle == $s && $this->FontSizePt == $s) {
return;
}
$fontkey = $f . $s;
if (!isset($this->fonts[$fontkey]) && !in_array($f, $this->CoreFonts)) {
$file = str_replace(' ', '', $f) . strtolower($s) . '.php';
foreach (explode(PATH_SEPARATOR, get_include_path()) as $path) {
if (file_exists($path . "/pdf/fonts/" . $file)) {
$this->AddFont($f, $s);
break;
}
}
}
}
parent::SetFont($family, $style, $size);
}
示例13: post_id_handler
public function post_id_handler()
{
if (!is_array($this->id)) {
$this->id = array($this->id);
}
$today = date("F j, Y");
$pdf = new FPDF('L', 'in', array(3.5, 5.0));
$pdf->AddFont('Gill', '', 'GillSansMTPro-Medium.php');
$primary = "";
$pdf->SetAutoPageBreak(true, 0);
$pdf->SetFont("Gill", "", 10);
//Meat of the statement
foreach ($this->id as $card_no) {
$account = \COREPOS\Fannie\API\member\MemberREST::get($card_no);
$pdf->AddPage();
$pdf->SetXY(3.0, 1.45);
foreach ($account['customers'] as $c) {
if ($c['accountHolder']) {
$pdf->Cell(2, 0.25, $c['firstName'] . ' ' . $c['lastName'], "", 1, "L");
break;
}
}
$pdf->SetX(3.0);
$pdf->Cell(2, 0.25, $account['addressFirstLine'], "", 1, "L");
if ($account['addressSecondLine']) {
$pdf->SetX(3.0);
$pdf->Cell(2, 0.25, $account['addressSecondLine'], "", 1, "L");
}
$pdf->SetX(3.0);
$str = $account['city'] . ", " . $account['state'] . " " . $account['zip'];
$pdf->Cell(2, 0.25, $str, "", 1, "L");
}
$pdf->Output('member postcards.pdf', 'D');
return false;
}
示例14: generatePDF
function generatePDF($print_id, $print_type = 1)
{
include "config.php";
require_once 'fpdf/fpdf.php';
$db = go\DB\DB::create($db_params, 'mysql');
$db->query('SET CHARACTER SET cp1251');
$get_print = $db->query('SELECT `finish_number`, `valve_type_id` FROM {numbers} WHERE `print_id`=?', array($_GET['print_id']))->assoc();
$get_print_info = $db->query('SELECT DISTINCT(`nm`.`order`) as `order`, `us`.`name` as `name`, `nm`.`print_id` as `print_id` FROM {numbers} `nm` LEFT JOIN {users} `us` ON (`nm`.`user_id` = `us`.`id`) WHERE `print_id`=?', array($_GET['print_id']))->row();
define('FPDF_FONTPATH', 'fpdf/fonts');
$pdf = new FPDF("L", "mm", array("88", "7"));
$pdf->AddFont('Arial-BoldMT', 'B', 'arial_bold.php');
$pdf->SetFont('Arial-BoldMT', 'B', 11);
$pdf->SetTextColor(0);
//Add info for this order
$pdf->AddPage('L');
$pdf->SetAutoPageBreak(false);
$pdf->SetXY(0, 0);
$pdf->Cell(43, 7, $get_print_info['name'], 0, 0, "C", 0);
$pdf->Cell(4, 7, '', 0, 0, "C", 0);
$pdf->Cell(43, 7, $get_print_info['order'], 0, 0, "C", 0);
//End of add
for ($i = 0; $i < count($get_print); $i++) {
$pdf->AddPage('L');
$pdf->SetAutoPageBreak(false);
$pdf->SetXY(0, 0);
$pdf->Cell(43, 7, 'Ser.: ' . $get_print[$i]['finish_number'], 0, 0, "C", 0);
$pdf->Cell(4, 7, '', 0, 0, "C", 0);
if ($i + $print_type < count($get_print)) {
$pdf->Cell(43, 7, 'Ser.: ' . $get_print[$i + $print_type]['finish_number'], 0, 0, "C", 0);
}
$pdf->SetAutoPageBreak(false);
$i += $print_type;
}
return $pdf->Output($get_print_info['print_id'] . '.pdf', 'I');
}
示例15: create_matrix
public function create_matrix()
{
$matrix = array();
$position = '';
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 16);
$pdf->Cell(12, 10, ' ', 1, 0, 'C');
$pdf->Cell(12, 10, 'A', 1, 0, 'C');
$pdf->Cell(12, 10, 'B', 1, 0, 'C');
$pdf->Cell(12, 10, 'C', 1, 0, 'C');
$pdf->Cell(12, 10, 'D', 1, 0, 'C');
$pdf->Cell(12, 10, 'E', 1, 0, 'C');
$pdf->Cell(12, 10, 'F', 1, 0, 'C');
$pdf->Cell(12, 10, 'G', 1, 0, 'C');
$pdf->Cell(12, 10, 'H', 1, 0, 'C');
$pdf->Ln(10);
for ($i = 1; $i <= $this->rows; $i++) {
$letra = 'A';
$pdf->Cell(12, 10, $i, 1, 0, 'C');
for ($j = 0; $j < $this->cols; $j++) {
$matrix[$i][$j] = rand($this->min, $this->max);
$pdf->Cell(12, 10, $matrix[$i][$j], 1, 0, 'C');
$position .= $letra . $i . '-' . $matrix[$i][$j] . ';';
++$letra;
}
$pdf->Ln(10);
}
$pdf->Output('accessMatrix.pdf', 'D');
return $position;
}