296 |
aurelien |
1 |
<?php
|
|
|
2 |
//============================================================+
|
|
|
3 |
// File name : spotcolors.php
|
|
|
4 |
// Version : 1.0.000
|
|
|
5 |
// Begin : 2010-11-11
|
|
|
6 |
// Last Update : 2010-11-25
|
|
|
7 |
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
|
|
8 |
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
|
|
9 |
// -------------------------------------------------------------------
|
|
|
10 |
// Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l.
|
|
|
11 |
//
|
|
|
12 |
// This file is part of TCPDF software library.
|
|
|
13 |
//
|
|
|
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.
|
|
|
18 |
//
|
|
|
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.
|
|
|
23 |
//
|
|
|
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/>.
|
|
|
26 |
//
|
|
|
27 |
// See LICENSE.TXT file for more information.
|
|
|
28 |
// -------------------------------------------------------------------
|
|
|
29 |
//
|
|
|
30 |
// Description : Array of Spot Colors for TCPDF library
|
|
|
31 |
//
|
|
|
32 |
//============================================================+
|
|
|
33 |
|
|
|
34 |
/**
|
|
|
35 |
* Arrays of Spot Colors for TCPDF library
|
|
|
36 |
* @author Nicola Asuni
|
|
|
37 |
* @copyright 2002-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
|
|
38 |
* @package com.tecnick.tcpdf
|
|
|
39 |
* @link http://www.tcpdf.org
|
|
|
40 |
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
|
|
41 |
* @since 5.9.012 (2010-11-11)
|
|
|
42 |
*/
|
|
|
43 |
|
|
|
44 |
/**
|
|
|
45 |
* Array of Spot colors (C,M,Y,K,name)
|
|
|
46 |
* Color keys must be in lowercase and without spaces.
|
|
|
47 |
* Add here your spot colors ...
|
|
|
48 |
*/
|
|
|
49 |
$spotcolor = array (
|
|
|
50 |
// these are just examples, add your own spot colors ...
|
|
|
51 |
'pantone116c' => array(0, 20, 100, 0, 'Pantone 116 C'),
|
|
|
52 |
'pantone288c' => array(100, 60, 10, 5, 'Pantone 288 C'),
|
|
|
53 |
'hks16k' => array(30, 100, 90, 10, 'HKS 16 K'),
|
|
|
54 |
// ...
|
|
|
55 |
);
|
|
|
56 |
|
|
|
57 |
//============================================================+
|
|
|
58 |
// END OF FILE
|
|
|
59 |
//============================================================+
|
|
|
60 |
?>
|