mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-22 12:55:10 +00:00
6.0.037 (2013-09-30)
- Method getAllSpotColors() was added to return all spot colors. - Method colorRegistrationBar() was extended to automatically print all spot colors and support individual spot colors. - The method registrationMarkCMYK() was added to print a registration mark for CMYK colors. - A bug related to page groups was fixed. - Gradient() method now supports CMYK equivalents of spot colors. - Example n. 56 was updated.
This commit is contained in:
parent
3098111c57
commit
df410b084d
@ -1,3 +1,11 @@
|
|||||||
|
6.0.037 (2013-09-30)
|
||||||
|
- Method getAllSpotColors() was added to return all spot colors.
|
||||||
|
- Method colorRegistrationBar() was extended to automatically print all spot colors and support individual spot colors.
|
||||||
|
- The method registrationMarkCMYK() was added to print a registration mark for CMYK colors.
|
||||||
|
- A bug related to page groups was fixed.
|
||||||
|
- Gradient() method now supports CMYK equivalents of spot colors.
|
||||||
|
- Example n. 56 was updated.
|
||||||
|
|
||||||
6.0.036 (2013-09-29)
|
6.0.036 (2013-09-29)
|
||||||
- Methods for registration bars and crop marks were extended to support registration color (see example n. 56).
|
- Methods for registration bars and crop marks were extended to support registration color (see example n. 56).
|
||||||
- New default spot colors were added to tcpdf_colors.php, including the 'All' and 'None' special registration colors.
|
- New default spot colors were added to tcpdf_colors.php, including the 'All' and 'None' special registration colors.
|
||||||
|
@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
|
|||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
Name: TCPDF
|
Name: TCPDF
|
||||||
Version: 6.0.036
|
Version: 6.0.037
|
||||||
Release date: 2013-09-29
|
Release date: 2013-09-30
|
||||||
Author: Nicola Asuni
|
Author: Nicola Asuni
|
||||||
|
|
||||||
Copyright (c) 2002-2013:
|
Copyright (c) 2002-2013:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tecnick.com/tcpdf",
|
"name": "tecnick.com/tcpdf",
|
||||||
"version": "6.0.036",
|
"version": "6.0.037",
|
||||||
"homepage": "http://www.tcpdf.org/",
|
"homepage": "http://www.tcpdf.org/",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"description": "TCPDF is a PHP class for generating PDF documents.",
|
"description": "TCPDF is a PHP class for generating PDF documents.",
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//============================================================+
|
//============================================================+
|
||||||
// File name : example_037.php
|
// File name : example_037.php
|
||||||
// Begin : 2008-09-12
|
// Begin : 2008-09-12
|
||||||
// Last Update : 2013-05-14
|
// Last Update : 2013-09-30
|
||||||
//
|
//
|
||||||
// Description : Example 037 for TCPDF class
|
// Description : Example 037 for TCPDF class
|
||||||
// Spot colors
|
// Spot colors
|
||||||
@ -86,7 +86,11 @@ $pdf->SetFont('helvetica', '', 10);
|
|||||||
|
|
||||||
$pdf->AddSpotColor('My TCPDF Dark Green', 100, 50, 80, 45);
|
$pdf->AddSpotColor('My TCPDF Dark Green', 100, 50, 80, 45);
|
||||||
$pdf->AddSpotColor('My TCPDF Light Yellow', 0, 0, 55, 0);
|
$pdf->AddSpotColor('My TCPDF Light Yellow', 0, 0, 55, 0);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Black', 0, 0, 0, 100);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Red', 30, 100, 90, 10);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Green', 100, 30, 100, 0);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Blue', 100, 60, 10, 5);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Yellow', 0, 20, 100, 0);
|
||||||
|
|
||||||
// Select the spot color
|
// Select the spot color
|
||||||
// $tint (the second parameter) is the intensity of the color (0-100).
|
// $tint (the second parameter) is the intensity of the color (0-100).
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//============================================================+
|
//============================================================+
|
||||||
// File name : example_056.php
|
// File name : example_056.php
|
||||||
// Begin : 2010-03-26
|
// Begin : 2010-03-26
|
||||||
// Last Update : 2013-09-29
|
// Last Update : 2013-09-30
|
||||||
//
|
//
|
||||||
// Description : Example 056 for TCPDF class
|
// Description : Example 056 for TCPDF class
|
||||||
// Crop marks and color registration bars
|
// Crop marks and color registration bars
|
||||||
@ -67,21 +67,22 @@ if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
|
|||||||
// ---------------------------------------------------------
|
// ---------------------------------------------------------
|
||||||
|
|
||||||
// set font
|
// set font
|
||||||
$pdf->SetFont('helvetica', '', 20);
|
$pdf->SetFont('helvetica', '', 18);
|
||||||
|
|
||||||
// add a page
|
// add a page
|
||||||
$pdf->AddPage();
|
$pdf->AddPage();
|
||||||
|
|
||||||
$pdf->Write(0, 'Example of Crop Marks and Color Registration Bars', '', 0, 'L', true, 0, false, false, 0);
|
$pdf->Write(0, 'Example of Registration Marks, Crop Marks and Color Bars', '', 0, 'L', true, 0, false, false, 0);
|
||||||
|
|
||||||
$pdf->Ln(5);
|
$pdf->Ln(5);
|
||||||
|
|
||||||
// color registration bars
|
// color registration bars
|
||||||
|
|
||||||
|
// A,W,R,G,B,C,M,Y,K,RGB,CMYK,ALL,ALLSPOT,<SPOT_COLOR_NAME>
|
||||||
$pdf->colorRegistrationBar(50, 70, 40, 40, true, false, 'A,R,G,B,C,M,Y,K');
|
$pdf->colorRegistrationBar(50, 70, 40, 40, true, false, 'A,R,G,B,C,M,Y,K');
|
||||||
$pdf->colorRegistrationBar(90, 70, 40, 40, true, true, 'A,R,G,B,C,M,Y,K');
|
$pdf->colorRegistrationBar(90, 70, 40, 40, true, true, 'A,R,G,B,C,M,Y,K');
|
||||||
$pdf->colorRegistrationBar(50, 115, 80, 5, false, true, 'A,W,R,G,B,C,M,Y,K');
|
$pdf->colorRegistrationBar(50, 115, 80, 5, false, true, 'A,W,R,G,B,C,M,Y,K,ALL');
|
||||||
$pdf->colorRegistrationBar(135, 70, 5, 50, false, false, 'A,W,R,G,B,C,M,Y,K');
|
$pdf->colorRegistrationBar(135, 70, 5, 50, false, false, 'A,W,R,G,B,C,M,Y,K,ALL');
|
||||||
|
|
||||||
// corner crop marks
|
// corner crop marks
|
||||||
|
|
||||||
@ -105,7 +106,22 @@ $pdf->cropMark(95, 140, 5, 5, 'A,D', array(0,0,255));
|
|||||||
$pdf->registrationMark(40, 60, 5, false);
|
$pdf->registrationMark(40, 60, 5, false);
|
||||||
$pdf->registrationMark(150, 60, 5, true, array(0,0,0), array(255,255,0));
|
$pdf->registrationMark(150, 60, 5, true, array(0,0,0), array(255,255,0));
|
||||||
$pdf->registrationMark(40, 130, 5, true, array(0,0,0), array(255,255,0));
|
$pdf->registrationMark(40, 130, 5, true, array(0,0,0), array(255,255,0));
|
||||||
$pdf->registrationMark(150, 130, 5, false, array(0,0,0,0,'None'), array(100,100,100,100,'All'));
|
$pdf->registrationMark(150, 130, 5, false, array(100,100,100,100,'All'), array(0,0,0,0,'None'));
|
||||||
|
|
||||||
|
// test registration bar with spot colors
|
||||||
|
|
||||||
|
$pdf->AddSpotColor('My TCPDF Dark Green', 100, 50, 80, 45);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Light Yellow', 0, 0, 55, 0);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Black', 0, 0, 0, 100);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Red', 30, 100, 90, 10);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Green', 100, 30, 100, 0);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Blue', 100, 60, 10, 5);
|
||||||
|
$pdf->AddSpotColor('My TCPDF Yellow', 0, 20, 100, 0);
|
||||||
|
|
||||||
|
$pdf->colorRegistrationBar(50, 150, 80, 10, false, true, 'ALLSPOT');
|
||||||
|
|
||||||
|
// CMYK registration mark
|
||||||
|
$pdf->registrationMarkCMYK(150, 155, 8);
|
||||||
|
|
||||||
// ---------------------------------------------------------
|
// ---------------------------------------------------------
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
//============================================================+
|
//============================================================+
|
||||||
// File name : tcpdf_colors.php
|
// File name : tcpdf_colors.php
|
||||||
// Version : 1.0.001
|
// Version : 1.0.002
|
||||||
// Begin : 2002-04-09
|
// Begin : 2002-04-09
|
||||||
// Last Update : 2013-09-29
|
// Last Update : 2013-09-30
|
||||||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
|
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
|
||||||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
@ -42,7 +42,7 @@
|
|||||||
* @class TCPDF_COLORS
|
* @class TCPDF_COLORS
|
||||||
* PHP color class for TCPDF
|
* PHP color class for TCPDF
|
||||||
* @package com.tecnick.tcpdf
|
* @package com.tecnick.tcpdf
|
||||||
* @version 1.0.001
|
* @version 1.0.002
|
||||||
* @author Nicola Asuni - info@tecnick.com
|
* @author Nicola Asuni - info@tecnick.com
|
||||||
*/
|
*/
|
||||||
class TCPDF_COLORS {
|
class TCPDF_COLORS {
|
||||||
@ -232,12 +232,7 @@ class TCPDF_COLORS {
|
|||||||
'red' => array( 0, 100, 100, 0, 'Red'),
|
'red' => array( 0, 100, 100, 0, 'Red'),
|
||||||
'green' => array(100, 0, 100, 0, 'Green'),
|
'green' => array(100, 0, 100, 0, 'Green'),
|
||||||
'blue' => array(100, 100, 0, 0, 'Blue'),
|
'blue' => array(100, 100, 0, 0, 'Blue'),
|
||||||
// the following are just examples, fill the array with your own values
|
// Add here standard spot colors or dynamically define them with AddSpotColor()
|
||||||
'mytcpdfblack' => array(0, 0, 0, 100, 'My TCPDF Black'),
|
|
||||||
'mytcpdfred' => array(30, 100, 90, 10, 'My TCPDF Red'),
|
|
||||||
'mytcpdfgreen' => array(100, 30, 100, 0, 'My TCPDF Green'),
|
|
||||||
'mytcpdfblue' => array(100, 60, 10, 5, 'My TCPDF Blue'),
|
|
||||||
'mytcpdfyellow' => array(0, 20, 100, 0, 'My TCPDF Yellow'),
|
|
||||||
// ...
|
// ...
|
||||||
); // end of spot colors
|
); // end of spot colors
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ class TCPDF_STATIC {
|
|||||||
* Current TCPDF version.
|
* Current TCPDF version.
|
||||||
* @private static
|
* @private static
|
||||||
*/
|
*/
|
||||||
private static $tcpdf_version = '6.0.036';
|
private static $tcpdf_version = '6.0.037';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* String alias for total number of pages.
|
* String alias for total number of pages.
|
||||||
|
130
tcpdf.php
130
tcpdf.php
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
//============================================================+
|
//============================================================+
|
||||||
// File name : tcpdf.php
|
// File name : tcpdf.php
|
||||||
// Version : 6.0.036
|
// Version : 6.0.037
|
||||||
// Begin : 2002-08-03
|
// Begin : 2002-08-03
|
||||||
// Last Update : 2013-09-29
|
// Last Update : 2013-09-30
|
||||||
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
|
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
|
||||||
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
@ -104,7 +104,7 @@
|
|||||||
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
||||||
* @package com.tecnick.tcpdf
|
* @package com.tecnick.tcpdf
|
||||||
* @author Nicola Asuni
|
* @author Nicola Asuni
|
||||||
* @version 6.0.036
|
* @version 6.0.037
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// TCPDF configuration
|
// TCPDF configuration
|
||||||
@ -128,7 +128,7 @@ require_once(dirname(__FILE__).'/include/tcpdf_static.php');
|
|||||||
* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
|
* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
|
||||||
* @package com.tecnick.tcpdf
|
* @package com.tecnick.tcpdf
|
||||||
* @brief PHP class for generating PDF documents without requiring external extensions.
|
* @brief PHP class for generating PDF documents without requiring external extensions.
|
||||||
* @version 6.0.036
|
* @version 6.0.037
|
||||||
* @author Nicola Asuni - info@tecnick.com
|
* @author Nicola Asuni - info@tecnick.com
|
||||||
*/
|
*/
|
||||||
class TCPDF {
|
class TCPDF {
|
||||||
@ -3652,6 +3652,16 @@ class TCPDF {
|
|||||||
return $this->page;
|
return $this->page;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the array of spot colors.
|
||||||
|
* @return (array) Spot colors array.
|
||||||
|
* @public
|
||||||
|
* @since 6.0.037 (2013-09-30)
|
||||||
|
*/
|
||||||
|
public function getAllSpotColors() {
|
||||||
|
return $this->spot_colors;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines a new spot color.
|
* Defines a new spot color.
|
||||||
* It can be expressed in RGB components or gray scale.
|
* It can be expressed in RGB components or gray scale.
|
||||||
@ -7838,6 +7848,7 @@ class TCPDF {
|
|||||||
$groupnum = 0;
|
$groupnum = 0;
|
||||||
$ptgu = 1;
|
$ptgu = 1;
|
||||||
$ptga = 1;
|
$ptga = 1;
|
||||||
|
$ptg_num_chars = 1;
|
||||||
for ($n = 1; $n <= $num_pages; ++$n) {
|
for ($n = 1; $n <= $num_pages; ++$n) {
|
||||||
// get current page
|
// get current page
|
||||||
$temppage = $this->getPageBuffer($n);
|
$temppage = $this->getPageBuffer($n);
|
||||||
@ -13919,12 +13930,25 @@ class TCPDF {
|
|||||||
* @param $h (float) height of the rectangle.
|
* @param $h (float) height of the rectangle.
|
||||||
* @param $transition (boolean) if true prints tcolor transitions to white.
|
* @param $transition (boolean) if true prints tcolor transitions to white.
|
||||||
* @param $vertical (boolean) if true prints bar vertically.
|
* @param $vertical (boolean) if true prints bar vertically.
|
||||||
* @param $colors (string) colors to print, one letter per color separated by comma (for example 'A,W,R,G,B,C,M,Y,K,RGB,CMYK,ALL'): A = grayscale black, W = grayscale white, R = RGB red, G RGB green, B RGB blue, C = CMYK cyan, M = CMYK magenta, Y = CMYK yellow, K = CMYK key/black, RGB = RGB registration color, CMYK = CMYK registration color, ALL = Spot registration color.
|
* @param $colors (string) colors to print separated by comma. Valid values are: A,W,R,G,B,C,M,Y,K,RGB,CMYK,ALL,ALLSPOT,<SPOT_COLOR_NAME>. Where: A = grayscale black, W = grayscale white, R = RGB red, G RGB green, B RGB blue, C = CMYK cyan, M = CMYK magenta, Y = CMYK yellow, K = CMYK key/black, RGB = RGB registration color, CMYK = CMYK registration color, ALL = Spot registration color, ALLSPOT = print all defined spot colors, <SPOT_COLOR_NAME> = name of the spot color to print.
|
||||||
* @author Nicola Asuni
|
* @author Nicola Asuni
|
||||||
* @since 4.9.000 (2010-03-26)
|
* @since 4.9.000 (2010-03-26)
|
||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
public function colorRegistrationBar($x, $y, $w, $h, $transition=true, $vertical=false, $colors='A,R,G,B,C,M,Y,K') {
|
public function colorRegistrationBar($x, $y, $w, $h, $transition=true, $vertical=false, $colors='A,R,G,B,C,M,Y,K') {
|
||||||
|
if (strpos($colors, 'ALLSPOT') !== false) {
|
||||||
|
// expand spot colors
|
||||||
|
$spot_colors = '';
|
||||||
|
foreach ($this->spot_colors as $spot_color_name => $v) {
|
||||||
|
$spot_colors .= ','.$spot_color_name;
|
||||||
|
}
|
||||||
|
if (!empty($spot_colors)) {
|
||||||
|
$spot_colors = substr($spot_colors, 1);
|
||||||
|
$colors = str_replace('ALLSPOT', $spot_colors, $colors);
|
||||||
|
} else {
|
||||||
|
$colors = str_replace('ALLSPOT', 'NONE', $colors);
|
||||||
|
}
|
||||||
|
}
|
||||||
$bars = explode(',', $colors);
|
$bars = explode(',', $colors);
|
||||||
$numbars = count($bars); // number of bars to print
|
$numbars = count($bars); // number of bars to print
|
||||||
if ($numbars <= 0) {
|
if ($numbars <= 0) {
|
||||||
@ -14004,23 +14028,38 @@ class TCPDF {
|
|||||||
$col_b = array(100,100,100,100);
|
$col_b = array(100,100,100,100);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'ALL':
|
case 'ALL': { // SPOT COLOR REGISTRATION
|
||||||
default: { // SPOT COLOR REGISTRATION
|
|
||||||
$col_a = array(0,0,0,0,'None');
|
$col_a = array(0,0,0,0,'None');
|
||||||
$col_b = array(100,100,100,100,'All');
|
$col_b = array(100,100,100,100,'All');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 'NONE': { // SKIP THIS COLOR
|
||||||
|
$col_a = array(0,0,0,0,'None');
|
||||||
|
$col_b = array(0,0,0,0,'None');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default: { // SPECIFIC SPOT COLOR NAME
|
||||||
|
$col_a = array(0,0,0,0,'None');
|
||||||
|
$col_b = TCPDF_COLORS::getSpotColor($col, $this->spot_colors);
|
||||||
|
if ($col_b === false) {
|
||||||
|
// in case of error defaults to the registration color
|
||||||
|
$col_b = array(100,100,100,100,'All');
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ($transition) {
|
if ($col != 'NONE') {
|
||||||
// color gradient
|
if ($transition) {
|
||||||
$this->LinearGradient($xb, $yb, $wb, $hb, $col_a, $col_b, $coords);
|
// color gradient
|
||||||
} else {
|
$this->LinearGradient($xb, $yb, $wb, $hb, $col_a, $col_b, $coords);
|
||||||
$this->SetFillColorArray($col_b);
|
} else {
|
||||||
// colored rectangle
|
$this->SetFillColorArray($col_b);
|
||||||
$this->Rect($xb, $yb, $wb, $hb, 'F', array());
|
// colored rectangle
|
||||||
|
$this->Rect($xb, $yb, $wb, $hb, 'F', array());
|
||||||
|
}
|
||||||
|
$xb += $xd;
|
||||||
|
$yb += $yd;
|
||||||
}
|
}
|
||||||
$xb += $xd;
|
|
||||||
$yb += $yd;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -14108,23 +14147,63 @@ class TCPDF {
|
|||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
public function registrationMark($x, $y, $r, $double=false, $cola=array(100,100,100,100,'All'), $colb=array(0,0,0,0,'None')) {
|
public function registrationMark($x, $y, $r, $double=false, $cola=array(100,100,100,100,'All'), $colb=array(0,0,0,0,'None')) {
|
||||||
$line_style = array('width' => (0.5 / $this->k), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $cola);
|
$line_style = array('width' => max((0.5 / $this->k),($r / 30)), 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $cola);
|
||||||
$this->SetFillColorArray($cola);
|
$this->SetFillColorArray($cola);
|
||||||
$this->PieSector($x, $y, $r, 90, 180, 'F');
|
$this->PieSector($x, $y, $r, 90, 180, 'F');
|
||||||
$this->PieSector($x, $y, $r, 270, 360, 'F');
|
$this->PieSector($x, $y, $r, 270, 360, 'F');
|
||||||
$this->Circle($x, $y, $r, 0, 360, 'C', $line_style, array(), 8);
|
$this->Circle($x, $y, $r, 0, 360, 'C', $line_style, array(), 8);
|
||||||
if ($double) {
|
if ($double) {
|
||||||
$r2 = $r * 0.5;
|
$ri = $r * 0.5;
|
||||||
$this->SetFillColorArray($colb);
|
$this->SetFillColorArray($colb);
|
||||||
$this->PieSector($x, $y, $r2, 90, 180, 'F');
|
$this->PieSector($x, $y, $ri, 90, 180, 'F');
|
||||||
$this->PieSector($x, $y, $r2, 270, 360, 'F');
|
$this->PieSector($x, $y, $ri, 270, 360, 'F');
|
||||||
$this->SetFillColorArray($cola);
|
$this->SetFillColorArray($cola);
|
||||||
$this->PieSector($x, $y, $r2, 0, 90, 'F');
|
$this->PieSector($x, $y, $ri, 0, 90, 'F');
|
||||||
$this->PieSector($x, $y, $r2, 180, 270, 'F');
|
$this->PieSector($x, $y, $ri, 180, 270, 'F');
|
||||||
$this->Circle($x, $y, $r2, 0, 360, 'C', $line_style, array(), 8);
|
$this->Circle($x, $y, $ri, 0, 360, 'C', $line_style, array(), 8);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paints a CMYK registration mark
|
||||||
|
* @param $x (float) abscissa of the registration mark center.
|
||||||
|
* @param $y (float) ordinate of the registration mark center.
|
||||||
|
* @param $r (float) radius of the crop mark.
|
||||||
|
* @author Nicola Asuni
|
||||||
|
* @since 6.0.037 (2013-09-30)
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
public function registrationMarkCMYK($x, $y, $r) {
|
||||||
|
// line width
|
||||||
|
$lw = max((0.5 / $this->k),($r / 8));
|
||||||
|
// internal radius
|
||||||
|
$ri = ($r * 0.6);
|
||||||
|
// external radius
|
||||||
|
$re = ($r * 1.3);
|
||||||
|
// Cyan
|
||||||
|
$this->SetFillColorArray(array(100,0,0,0));
|
||||||
|
$this->PieSector($x, $y, $ri, 270, 360, 'F');
|
||||||
|
// Magenta
|
||||||
|
$this->SetFillColorArray(array(0,100,0,0));
|
||||||
|
$this->PieSector($x, $y, $ri, 0, 90, 'F');
|
||||||
|
// Yellow
|
||||||
|
$this->SetFillColorArray(array(0,0,100,0));
|
||||||
|
$this->PieSector($x, $y, $ri, 90, 180, 'F');
|
||||||
|
// Key - black
|
||||||
|
$this->SetFillColorArray(array(0,0,0,100));
|
||||||
|
$this->PieSector($x, $y, $ri, 180, 270, 'F');
|
||||||
|
// registration color
|
||||||
|
$line_style = array('width' => $lw, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(100,100,100,100,'All'));
|
||||||
|
$this->SetFillColorArray(array(100,100,100,100,'All'));
|
||||||
|
// external circle
|
||||||
|
$this->Circle($x, $y, $r, 0, 360, 'C', $line_style, array(), 8);
|
||||||
|
// cross lines
|
||||||
|
$this->Line($x, ($y - $re), $x, ($y - $ri));
|
||||||
|
$this->Line($x, ($y + $ri), $x, ($y + $re));
|
||||||
|
$this->Line(($x - $re), $y, ($x - $ri), $y);
|
||||||
|
$this->Line(($x + $ri), $y, ($x + $re), $y);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Paints a linear colour gradient.
|
* Paints a linear colour gradient.
|
||||||
* @param $x (float) abscissa of the top left corner of the rectangle.
|
* @param $x (float) abscissa of the top left corner of the rectangle.
|
||||||
@ -14328,7 +14407,7 @@ class TCPDF {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 1: { // Gray scale
|
case 1: { // GRAY SCALE
|
||||||
$this->gradients[$n]['colspace'] = 'DeviceGray';
|
$this->gradients[$n]['colspace'] = 'DeviceGray';
|
||||||
if (!empty($background)) {
|
if (!empty($background)) {
|
||||||
$this->gradients[$n]['background'] = sprintf('%F', $bcolor[0]/255);
|
$this->gradients[$n]['background'] = sprintf('%F', $bcolor[0]/255);
|
||||||
@ -14370,6 +14449,7 @@ class TCPDF {
|
|||||||
// set colors
|
// set colors
|
||||||
$color = array_values($stop['color']);
|
$color = array_values($stop['color']);
|
||||||
switch($numcolspace) {
|
switch($numcolspace) {
|
||||||
|
case 5: // SPOT
|
||||||
case 4: { // CMYK
|
case 4: { // CMYK
|
||||||
$this->gradients[$n]['colors'][$key]['color'] = sprintf('%F %F %F %F', $color[0]/100, $color[1]/100, $color[2]/100, $color[3]/100);
|
$this->gradients[$n]['colors'][$key]['color'] = sprintf('%F %F %F %F', $color[0]/100, $color[1]/100, $color[2]/100, $color[3]/100);
|
||||||
break;
|
break;
|
||||||
@ -14378,7 +14458,7 @@ class TCPDF {
|
|||||||
$this->gradients[$n]['colors'][$key]['color'] = sprintf('%F %F %F', $color[0]/255, $color[1]/255, $color[2]/255);
|
$this->gradients[$n]['colors'][$key]['color'] = sprintf('%F %F %F', $color[0]/255, $color[1]/255, $color[2]/255);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 1: { // Gray scale
|
case 1: { // GRAY SCALE
|
||||||
$this->gradients[$n]['colors'][$key]['color'] = sprintf('%F', $color[0]/255);
|
$this->gradients[$n]['colors'][$key]['color'] = sprintf('%F', $color[0]/255);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user