2009-10-08 01:42:23 -07:00
< ? php
//============================================================+
// File name : example_037.php
// Begin : 2008-09-12
2013-05-01 05:13:44 -07:00
// Last Update : 2011-10-03
2011-05-15 23:13:21 -07:00
//
2009-10-08 01:42:23 -07:00
// Description : Example 037 for TCPDF class
// Spot colors
2011-05-15 23:13:21 -07:00
//
2009-10-08 01:42:23 -07:00
// Author: Nicola Asuni
2011-05-15 23:13:21 -07:00
//
2009-10-08 01:42:23 -07:00
// (c) Copyright:
// Nicola Asuni
2013-05-01 05:13:44 -07:00
// Tecnick.com LTD
2009-10-08 01:42:23 -07:00
// www.tecnick.com
// info@tecnick.com
//============================================================+
/**
* Creates an example PDF TEST document using TCPDF
* @ package com . tecnick . tcpdf
* @ abstract TCPDF - Example : Spot colors .
* @ author Nicola Asuni
* @ since 2008 - 09 - 12
*/
require_once ( '../config/lang/eng.php' );
require_once ( '../tcpdf.php' );
// create new PDF document
2011-05-15 23:13:21 -07:00
$pdf = new TCPDF ( PDF_PAGE_ORIENTATION , PDF_UNIT , PDF_PAGE_FORMAT , true , 'UTF-8' , false );
2009-10-08 01:42:23 -07:00
// set document information
$pdf -> SetCreator ( PDF_CREATOR );
$pdf -> SetAuthor ( 'Nicola Asuni' );
$pdf -> SetTitle ( 'TCPDF Example 037' );
$pdf -> SetSubject ( 'TCPDF Tutorial' );
$pdf -> SetKeywords ( 'TCPDF, PDF, example, test, guide' );
// set default header data
2011-05-15 23:13:21 -07:00
$pdf -> SetHeaderData ( PDF_HEADER_LOGO , PDF_HEADER_LOGO_WIDTH , PDF_HEADER_TITLE . ' 037' , PDF_HEADER_STRING );
2009-10-08 01:42:23 -07:00
// set header and footer fonts
$pdf -> setHeaderFont ( Array ( PDF_FONT_NAME_MAIN , '' , PDF_FONT_SIZE_MAIN ));
$pdf -> setFooterFont ( Array ( PDF_FONT_NAME_DATA , '' , PDF_FONT_SIZE_DATA ));
// set default monospaced font
$pdf -> SetDefaultMonospacedFont ( PDF_FONT_MONOSPACED );
//set margins
$pdf -> SetMargins ( PDF_MARGIN_LEFT , PDF_MARGIN_TOP , PDF_MARGIN_RIGHT );
$pdf -> SetHeaderMargin ( PDF_MARGIN_HEADER );
$pdf -> SetFooterMargin ( PDF_MARGIN_FOOTER );
//set auto page breaks
$pdf -> SetAutoPageBreak ( TRUE , PDF_MARGIN_BOTTOM );
//set image scale factor
2011-05-15 23:13:21 -07:00
$pdf -> setImageScale ( PDF_IMAGE_SCALE_RATIO );
2009-10-08 01:42:23 -07:00
//set some language-dependent strings
2011-05-15 23:13:21 -07:00
$pdf -> setLanguageArray ( $l );
2009-10-08 01:42:23 -07:00
// ---------------------------------------------------------
// set font
2013-05-01 05:13:44 -07:00
$pdf -> SetFont ( 'helvetica' , '' , 11 );
2009-10-08 01:42:23 -07:00
// add a page
$pdf -> AddPage ();
2013-05-01 05:13:44 -07:00
$html = '<h1>Example of Spot Colors</h1>Spot colors are single ink colors, rather than colors produced by four (CMYK), six (CMYKOG) or more inks in the printing process (process colors). They can be obtained by special vendors, but often the printers have found their own way of mixing inks to match defined colors.<br /><br />As long as no open standard for spot colours exists, TCPDF users will have to buy a colour book by one of the colour manufacturers and insert the values and names of spot colours directly into <b><em>spotcolors.php</em></b> file, or define them using the <b><em>AddSpotColor()</em></b> method.<br /><br />Common industry standard spot colors are:<br /><span color="#008800">ANPA-COLOR, DIC, FOCOLTONE, GCMI, HKS, PANTONE, TOYO, TRUMATCH</span>.' ;
2011-05-15 23:13:21 -07:00
2013-05-01 05:13:44 -07:00
// Print text using writeHTMLCell()
$pdf -> writeHTMLCell ( 0 , 0 , '' , '' , $html , 0 , 1 , 0 , true , 'J' , true );
2011-05-15 23:13:21 -07:00
2013-05-01 05:13:44 -07:00
$pdf -> SetFont ( 'helvetica' , '' , 10 );
2011-05-15 23:13:21 -07:00
2009-10-08 01:42:23 -07:00
// Define some new spot colors
2011-05-15 23:13:21 -07:00
// $c, $m, $y and $k (2nd, 3rd, 4th and 5th parameter) are the CMYK color components.
// AddSpotColor($name, $c, $m, $y, $k)
2013-05-01 05:13:44 -07:00
$pdf -> AddSpotColor ( 'My TCPDF Dark Green' , 100 , 50 , 80 , 45 );
$pdf -> AddSpotColor ( 'My TCPDF Light Yellow' , 0 , 0 , 55 , 0 );
2009-10-08 01:42:23 -07:00
2011-05-15 23:13:21 -07:00
// Select the spot color
// $tint (the second parameter) is the intensity of the color (0-100).
// SetTextSpotColor($name, $tint=100)
// SetDrawSpotColor($name, $tint=100)
// SetFillSpotColor($name, $tint=100)
2013-05-01 05:13:44 -07:00
$pdf -> SetTextSpotColor ( 'My TCPDF Black' , 100 );
$pdf -> SetDrawSpotColor ( 'My TCPDF Black' , 100 );
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
$starty = 100 ;
2009-10-08 01:42:23 -07:00
// print some spot colors
2013-05-01 05:13:44 -07:00
$pdf -> SetFillSpotColor ( 'My TCPDF Dark Green' , 100 );
$pdf -> Rect ( 30 , $starty , 40 , 20 , 'DF' );
$pdf -> Text ( 73 , $starty + 8 , 'My TCPDF Dark Green' );
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
$starty += 24 ;
$pdf -> SetFillSpotColor ( 'My TCPDF Light Yellow' , 100 );
$pdf -> Rect ( 30 , $starty , 40 , 20 , 'DF' );
$pdf -> Text ( 73 , $starty + 8 , 'My TCPDF Light Yellow' );
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
// --- default values defined on spotcolors.php ---
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
$starty += 24 ;
$pdf -> SetFillSpotColor ( 'My TCPDF Red' , 100 );
$pdf -> Rect ( 30 , $starty , 40 , 20 , 'DF' );
$pdf -> Text ( 73 , $starty + 8 , 'My TCPDF Red' );
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
$starty += 24 ;
$pdf -> SetFillSpotColor ( 'My TCPDF Green' , 100 );
$pdf -> Rect ( 30 , $starty , 40 , 20 , 'DF' );
$pdf -> Text ( 73 , $starty + 8 , 'My TCPDF Green' );
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
$starty += 24 ;
$pdf -> SetFillSpotColor ( 'My TCPDF Blue' , 100 );
$pdf -> Rect ( 30 , $starty , 40 , 20 , 'DF' );
$pdf -> Text ( 73 , $starty + 8 , 'My TCPDF Blue' );
2009-10-08 01:42:23 -07:00
2013-05-01 05:13:44 -07:00
$starty += 24 ;
$pdf -> SetFillSpotColor ( 'My TCPDF Yellow' , 100 );
$pdf -> Rect ( 30 , $starty , 40 , 20 , 'DF' );
$pdf -> Text ( 73 , $starty + 8 , 'My TCPDF Yellow' );
2009-10-08 01:42:23 -07:00
// ---------------------------------------------------------
//Close and output PDF document
$pdf -> Output ( 'example_037.pdf' , 'I' );
//============================================================+
2011-05-15 23:13:21 -07:00
// END OF FILE
2009-10-08 01:42:23 -07:00
//============================================================+