2 //============================================================+
3 // File name : spotcolors.php
6 // Last Update : 2011-10-03
7 // Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com
8 // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
9 // -------------------------------------------------------------------
10 // Copyright (C) 2002-2012 Nicola Asuni - Tecnick.com LTD
12 // This file is part of TCPDF software library.
14 // TCPDF is free software: you can redistribute it and/or modify it
15 // under the terms of the GNU Lesser General Public License as
16 // published by the Free Software Foundation, either version 3 of the
17 // License, or (at your option) any later version.
19 // TCPDF is distributed in the hope that it will be useful, but
20 // WITHOUT ANY WARRANTY; without even the implied warranty of
21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 // See the GNU Lesser General Public License for more details.
24 // You should have received a copy of the GNU Lesser General Public License
25 // along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
27 // See LICENSE.TXT file for more information.
28 // -------------------------------------------------------------------
30 // Description : Array of Spot Colors for TCPDF library
32 //============================================================+
36 * Arrays of Spot Colors for TCPDF library
37 * @author Nicola Asuni
38 * @package com.tecnick.tcpdf
39 * @since 5.9.012 (2010-11-11)
43 * Array of Spot colors (C,M,Y,K,name)
44 * Color keys must be in lowercase and without spaces.
45 * As long as no open standard for spot colours exists, you have to buy a colour book by one of the colour manufacturers and insert the values and names of spot colours directly.
46 * Common industry standard spot colors are: ANPA-COLOR, DIC, FOCOLTONE, GCMI, HKS, PANTONE, TOYO, TRUMATCH.
49 // the following are just examples, fill the array with your own values
50 'mytcpdfblack' => array(0, 0, 0, 100, 'My TCPDF Black'),
51 'mytcpdfred' => array(30, 100, 90, 10, 'My TCPDF Red'),
52 'mytcpdfgreen' => array(100, 30, 100, 0, 'My TCPDF Green'),
53 'mytcpdfblue' => array(100, 60, 10, 5, 'My TCPDF Blue'),
54 'mytcpdfyellow' => array(0, 20, 100, 0, 'My TCPDF Yellow'),
58 //============================================================+
60 //============================================================+