123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847 |
- <?php
- /**
- * DOMPDF - PHP5 HTML to PDF renderer
- *
- * File: $RCSfile: abstract_renderer.cls.php,v $
- * Created on: 2004-06-01
- *
- * Copyright (c) 2004 - Benj Carson <benjcarson@digitaljunkies.ca>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this library in the file LICENSE.LGPL; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- * 02111-1307 USA
- *
- * Alternatively, you may distribute this software under the terms of the
- * PHP License, version 3.0 or later. A copy of this license should have
- * been distributed with this file in the file LICENSE.PHP . If this is not
- * the case, you can obtain a copy at http://www.php.net/license/3_0.txt.
- *
- * The latest version of DOMPDF might be available at:
- * http://www.dompdf.com/
- *
- * @link http://www.dompdf.com/
- * @copyright 2004 Benj Carson
- * @author Benj Carson <benjcarson@digitaljunkies.ca>
- * @contributor Helmut Tischer <htischer@weihenstephan.org>
- * @package dompdf
- *
- * Changes
- * @contributor Helmut Tischer <htischer@weihenstephan.org>
- * @version 0.5.1.htischer.20090507
- * - On background image
- * - Clip invisible areas from background images, then merge identical
- * image/size/offset to a single image.
- * - Fix rounding of background image size.
- * - Fix background image position given as percent
- * - Check if identical image is already cached by cpdf. Then do not create
- * duplicates to save memory and CPU time
- * - Fix skipping of image repetition if area is too small
- * - Do not create temporary files, but pass gd object directly
- */
- /* $Id: abstract_renderer.cls.php 216 2010-03-11 22:49:18Z ryan.masten $ */
- /**
- * Base renderer class
- *
- * @access private
- * @package dompdf
- */
- abstract class Abstract_Renderer {
- /**
- * Rendering backend
- *
- * @var Canvas
- */
- protected $_canvas;
- /**
- * Current dompdf instance
- *
- * @var DOMPDF
- */
- protected $_dompdf;
-
- /**
- * Class constructor
- *
- * @param DOMPDF $dompdf The current dompdf instance
- */
- function __construct(DOMPDF $dompdf) {
- $this->_dompdf = $dompdf;
- $this->_canvas = $dompdf->get_canvas();
- }
-
- /**
- * Render a frame.
- *
- * Specialized in child classes
- *
- * @param Frame $frame The frame to render
- */
- abstract function render(Frame $frame);
- //........................................................................
- /**
- * Render a background image over a rectangular area
- *
- * @param string $img The background image to load
- * @param float $x The left edge of the rectangular area
- * @param float $y The top edge of the rectangular area
- * @param float $width The width of the rectangular area
- * @param float $height The height of the rectangular area
- * @param Style $style The associated Style object
- */
- protected function _background_image($url, $x, $y, $width, $height, $style) {
- $sheet = $style->get_stylesheet();
- // Skip degenerate cases
- if ( $width == 0 || $height == 0 )
- return;
- //debugpng
- if (DEBUGPNG) print '[_background_image '.$url.']';
- list($img, $ext) = Image_Cache::resolve_url($url,
- $sheet->get_protocol(),
- $sheet->get_host(),
- $sheet->get_base_path());
- // Bail if the image is no good
- if ( $img === DOMPDF_LIB_DIR . "/res/broken_image.png" )
- return;
- //Try to optimize away reading and composing of same background multiple times
- //Postponing read with imagecreatefrom ...()
- //final composition paramters and name not known yet
- //Therefore read dimension directly from file, instead of creating gd object first.
- //$img_w = imagesx($src); $img_h = imagesy($src);
- list($img_w, $img_h) = getimagesize($img);
- if (!isset($img_w) || $img_w == 0 || !isset($img_h) || $img_h == 0) {
- return;
- }
- $repeat = $style->background_repeat;
- $bg_color = $style->background_color;
- //Increase background resolution and dependent box size according to image resolution to be placed in
- //Then image can be copied in without resize
- $bg_width = round((float)($width * DOMPDF_DPI) / 72);
- $bg_height = round((float)($height * DOMPDF_DPI) / 72);
- //Need %bg_x, $bg_y as background pos, where img starts, converted to pixel
- list($bg_x, $bg_y) = $style->background_position;
- if ( is_percent($bg_x) ) {
- // The point $bg_x % from the left edge of the image is placed
- // $bg_x % from the left edge of the background rectangle
- $p = ((float)$bg_x)/100.0;
- $x1 = $p * $img_w;
- $x2 = $p * $bg_width;
- $bg_x = round($x2 - $x1);
- } else {
- $bg_x = round((float)($style->length_in_pt($bg_x)*DOMPDF_DPI) / 72);
- }
- if ( is_percent($bg_y) ) {
- // The point $bg_y % from the left edge of the image is placed
- // $bg_y % from the left edge of the background rectangle
- $p = ((float)$bg_y)/100.0;
- $y1 = $p * $img_h;
- $y2 = $p * $bg_height;
- $bg_y = round($y2 - $y1);
- } else {
- $bg_y = round((float)($style->length_in_pt($bg_y)*DOMPDF_DPI) / 72);
- }
- //clip background to the image area on partial repeat. Nothing to do if img off area
- //On repeat, normalize start position to the tile at immediate left/top or 0/0 of area
- //On no repeat with positive offset: move size/start to have offset==0
- //Handle x/y Dimensions separately
- if ( $repeat !== "repeat" && $repeat !== "repeat-x" ) {
- //No repeat x
- if ($bg_x < 0) {
- $bg_width = $img_w + $bg_x;
- } else {
- $x += ($bg_x * 72)/DOMPDF_DPI;
- $bg_width = $bg_width - $bg_x;
- if ($bg_width > $img_w) {
- $bg_width = $img_w;
- }
- $bg_x = 0;
- }
- if ($bg_width <= 0) {
- return;
- }
- $width = (float)($bg_width * 72)/DOMPDF_DPI;
- } else {
- //repeat x
- if ($bg_x < 0) {
- $bg_x = - ((-$bg_x) % $img_w);
- } else {
- $bg_x = $bg_x % $img_w;
- if ($bg_x > 0) {
- $bg_x -= $img_w;
- }
- }
- }
- if ( $repeat !== "repeat" && $repeat !== "repeat-y" ) {
- //no repeat y
- if ($bg_y < 0) {
- $bg_height = $img_h + $bg_y;
- } else {
- $y += ($bg_y * 72)/DOMPDF_DPI;
- $bg_height = $bg_height - $bg_y;
- if ($bg_height > $img_h) {
- $bg_height = $img_h;
- }
- $bg_y = 0;
- }
- if ($bg_height <= 0) {
- return;
- }
- $height = (float)($bg_height * 72)/DOMPDF_DPI;
- } else {
- //repeat y
- if ($bg_y < 0) {
- $bg_y = - ((-$bg_y) % $img_h);
- } else {
- $bg_y = $bg_y % $img_h;
- if ($bg_y > 0) {
- $bg_y -= $img_h;
- }
- }
- }
- //Optimization, if repeat has no effect
- if ( $repeat === "repeat" && $bg_y <= 0 && $img_h+$bg_y >= $bg_height ) {
- $repeat = "repeat-x";
- }
- if ( $repeat === "repeat" && $bg_x <= 0 && $img_w+$bg_x >= $bg_width ) {
- $repeat = "repeat-y";
- }
- if ( ($repeat === "repeat-x" && $bg_x <= 0 && $img_w+$bg_x >= $bg_width) ||
- ($repeat === "repeat-y" && $bg_y <= 0 && $img_h+$bg_y >= $bg_height) ) {
- $repeat = "no-repeat";
- }
- //Use filename as indicator only
- //different names for different variants to have different copies in the pdf
- //This is not dependent of background color of box! .'_'.(is_array($bg_color) ? $bg_color["hex"] : $bg_color)
- //Note: Here, bg_* are the start values, not end values after going through the tile loops!
- $filedummy = $img;
- /*
- //Make shorter strings with limited characters for cache associative array index - needed?
- //Strip common base path - server root, explicite temp, default temp; remove unwanted characters;
- $filedummy = strtr($filedummy,"\\:","//");
- $p = strtr($_SERVER["DOCUMENT_ROOT"],"\\:","//");
- $l = strlen($p);
- if ( substr($filedummy,0,$l) == $p) {
- $filedummy = substr($filedummy,$l);
- } else {
- $p = strtr(DOMPDF_TEMP_DIR,"\\:","//");
- $l = strlen($p);
- if ( substr($filedummy,0,$l) == $p) {
- $filedummy = substr($filedummy,$l);
- } else {
- $p = strtr(sys_get_temp_dir(),"\\:","//");
- $l = strlen($p);
- if ( substr($filedummy,0,$l) == $p) {
- $filedummy = substr($filedummy,$l);
- }
- }
- }
- */
-
- $filedummy .= '_'.$bg_width.'_'.$bg_height.'_'.$bg_x.'_'.$bg_y.'_'.$repeat;
- //debugpng
- //if (DEBUGPNG) print '<pre>[_background_image name '.$filedummy.']</pre>';
- //Optimization to avoid multiple times rendering the same image.
- //If check functions are existing and identical image already cached,
- //then skip creation of duplicate, because it is not needed by addImagePng
- if ( method_exists( $this->_canvas, "get_cpdf" ) &&
- method_exists( $this->_canvas->get_cpdf(), "addImagePng" ) &&
- method_exists( $this->_canvas->get_cpdf(), "image_iscached" ) &&
- $this->_canvas->get_cpdf()->image_iscached($filedummy) ) {
- $bg = null;
- //debugpng
- //if (DEBUGPNG) print '[_background_image skip]';
- } else {
- // Create a new image to fit over the background rectangle
- $bg = imagecreatetruecolor($bg_width, $bg_height);
- //anyway default
- //imagealphablending($img, true);
- switch (strtolower($ext)) {
- case "png":
- $src = imagecreatefrompng($img);
- break;
- case "jpg":
- case "jpeg":
- $src = imagecreatefromjpeg($img);
- break;
- case "gif":
- $src = imagecreatefromgif($img);
- break;
- default:
- return; // Unsupported image type
- }
- if ($src == null) {
- return;
- }
- //Background color if box is not relevant here
- //Non transparent image: box clipped to real size. Background non relevant.
- //Transparent image: The image controls the transparency and lets shine through whatever background.
- //However on transparent imaage preset the composed image with the transparency color,
- //to keep the transparency when copying over the non transparent parts of the tiles.
- $ti = imagecolortransparent($src);
- if ($ti >= 0) {
- $tc = imagecolorsforindex($src,$ti);
- $ti = imagecolorallocate($bg,$tc['red'],$tc['green'],$tc['blue']);
- imagefill($bg,0,0,$ti);
- imagecolortransparent($bg, $ti);
- }
- //This has only an effect for the non repeatable dimension.
- //compute start of src and dest coordinates of the single copy
- if ( $bg_x < 0 ) {
- $dst_x = 0;
- $src_x = -$bg_x;
- } else {
- $src_x = 0;
- $dst_x = $bg_x;
- }
- if ( $bg_y < 0 ) {
- $dst_y = 0;
- $src_y = -$bg_y;
- } else {
- $src_y = 0;
- $dst_y = $bg_y;
- }
- //For historical reasons exchange meanings of variables:
- //start_* will be the start values, while bg_* will be the temporary start values in the loops
- $start_x = $bg_x;
- $start_y = $bg_y;
- // Copy regions from the source image to the background
- if ( $repeat === "no-repeat" ) {
- // Simply place the image on the background
- imagecopy($bg, $src, $dst_x, $dst_y, $src_x, $src_y, $img_w, $img_h);
- } else if ( $repeat === "repeat-x" ) {
- for ( $bg_x = $start_x; $bg_x < $bg_width; $bg_x += $img_w ) {
- if ( $bg_x < 0 ) {
- $dst_x = 0;
- $src_x = -$bg_x;
- $w = $img_w + $bg_x;
- } else {
- $dst_x = $bg_x;
- $src_x = 0;
- $w = $img_w;
- }
- imagecopy($bg, $src, $dst_x, $dst_y, $src_x, $src_y, $w, $img_h);
- }
- } else if ( $repeat === "repeat-y" ) {
- for ( $bg_y = $start_y; $bg_y < $bg_height; $bg_y += $img_h ) {
- if ( $bg_y < 0 ) {
- $dst_y = 0;
- $src_y = -$bg_y;
- $h = $img_h + $bg_y;
- } else {
- $dst_y = $bg_y;
- $src_y = 0;
- $h = $img_h;
- }
- imagecopy($bg, $src, $dst_x, $dst_y, $src_x, $src_y, $img_w, $h);
- }
- } else if ( $repeat === "repeat" ) {
- for ( $bg_y = $start_y; $bg_y < $bg_height; $bg_y += $img_h ) {
- for ( $bg_x = $start_x; $bg_x < $bg_width; $bg_x += $img_w ) {
- if ( $bg_x < 0 ) {
- $dst_x = 0;
- $src_x = -$bg_x;
- $w = $img_w + $bg_x;
- } else {
- $dst_x = $bg_x;
- $src_x = 0;
- $w = $img_w;
- }
- if ( $bg_y < 0 ) {
- $dst_y = 0;
- $src_y = -$bg_y;
- $h = $img_h + $bg_y;
- } else {
- $dst_y = $bg_y;
- $src_y = 0;
- $h = $img_h;
- }
- imagecopy($bg, $src, $dst_x, $dst_y, $src_x, $src_y, $w, $h);
- }
- }
- } else {
- print 'Unknown repeat!';
- }
- } /* End optimize away creation of duplicates */
- //img: image url string
- //img_w, img_h: original image size in px
- //width, height: box size in pt
- //bg_width, bg_height: box size in px
- //x, y: left/top edge of box on page in pt
- //start_x, start_y: placement of image relativ to pattern
- //$repeat: repeat mode
- //$bg: GD object of result image
- //$src: GD object of original image
- //When using cpdf and optimization to direct png creation from gd object is available,
- //don't create temp file, but place gd object directly into the pdf
- if ( method_exists( $this->_canvas, "get_cpdf" ) && method_exists( $this->_canvas->get_cpdf(), "addImagePng" ) ) {
- //Note: CPDF_Adapter image converts y position
- $this->_canvas->get_cpdf()->addImagePng(
- $filedummy,
- $x, $this->_canvas->get_height() - $y - $height, $width, $height, $bg);
- } else {
- $tmp_file = tempnam(DOMPDF_TEMP_DIR, "bg_dompdf_img_").'.png';
- //debugpng
- if (DEBUGPNG) print '[_background_image '.$tmp_file.']';
- imagepng($bg, $tmp_file);
- $this->_canvas->image($tmp_file, "png", $x, $y, $width, $height);
- //debugpng
- if (DEBUGPNG) print '[_background_image unlink '.$tmp_file.']';
- if (!DEBUGKEEPTEMP)
- unlink($tmp_file);
- }
- }
- protected function _border_none($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- return;
- }
-
- // Border rendering functions
- protected function _border_dotted($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
- if ( $$side < 2 )
- $dash = array($$side, 2);
- else
- $dash = array($$side);
-
-
- switch ($side) {
- case "top":
- $delta = $top / 2;
- case "bottom":
- $delta = isset($delta) ? $delta : -$bottom / 2;
- $this->_canvas->line($x, $y + $delta, $x + $length, $y + $delta, $color, $$side, $dash);
- break;
- case "left":
- $delta = $left / 2;
- case "right":
- $delta = isset($delta) ? $delta : - $right / 2;
- $this->_canvas->line($x + $delta, $y, $x + $delta, $y + $length, $color, $$side, $dash);
- break;
- default:
- return;
- }
- }
-
- protected function _border_dashed($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
- switch ($side) {
- case "top":
- $delta = $top / 2;
- case "bottom":
- $delta = isset($delta) ? $delta : -$bottom / 2;
- $this->_canvas->line($x, $y + $delta, $x + $length, $y + $delta, $color, $$side, array(3 * $$side));
- break;
- case "left":
- $delta = $left / 2;
- case "right":
- $delta = isset($delta) ? $delta : - $right / 2;
- $this->_canvas->line($x + $delta, $y, $x + $delta, $y + $length, $color, $$side, array(3 * $$side));
- break;
- default:
- return;
- }
-
- }
-
- protected function _border_solid($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
- // All this polygon business is for beveled corners...
- switch ($side) {
- case "top":
- if ( $corner_style === "bevel" ) {
-
- $points = array($x, $y,
- $x + $length, $y,
- $x + $length - $right, $y + $top,
- $x + $left, $y + $top);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else
- $this->_canvas->filled_rectangle($x, $y, $length, $top, $color);
-
- break;
-
- case "bottom":
- if ( $corner_style === "bevel" ) {
- $points = array($x, $y,
- $x + $length, $y,
- $x + $length - $right, $y - $bottom,
- $x + $left, $y - $bottom);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else
- $this->_canvas->filled_rectangle($x, $y - $bottom, $length, $bottom, $color);
-
- break;
-
- case "left":
- if ( $corner_style === "bevel" ) {
- $points = array($x, $y,
- $x, $y + $length,
- $x + $left, $y + $length - $bottom,
- $x + $left, $y + $top);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else
- $this->_canvas->filled_rectangle($x, $y, $left, $length, $color);
-
- break;
-
- case "right":
- if ( $corner_style === "bevel" ) {
- $points = array($x, $y,
- $x, $y + $length,
- $x - $right, $y + $length - $bottom,
- $x - $right, $y + $top);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else
- $this->_canvas->filled_rectangle($x - $right, $y, $right, $length, $color);
- break;
- default:
- return;
- }
-
- }
- protected function _border_double($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
-
- $line_width = $$side / 4;
-
- // We draw the outermost edge first. Points are ordered: outer left,
- // outer right, inner right, inner left, or outer top, outer bottom,
- // inner bottom, inner top.
- switch ($side) {
- case "top":
- if ( $corner_style === "bevel" ) {
- $left_line_width = $left / 4;
- $right_line_width = $right / 4;
-
- $points = array($x, $y,
- $x + $length, $y,
- $x + $length - $right_line_width, $y + $line_width,
- $x + $left_line_width, $y + $line_width,);
- $this->_canvas->polygon($points, $color, null, null, true);
-
- $points = array($x + $left - $left_line_width, $y + $top - $line_width,
- $x + $length - $right + $right_line_width, $y + $top - $line_width,
- $x + $length - $right, $y + $top,
- $x + $left, $y + $top);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else {
- $this->_canvas->filled_rectangle($x, $y, $length, $line_width, $color);
- $this->_canvas->filled_rectangle($x, $y + $top - $line_width, $length, $line_width, $color);
- }
- break;
-
- case "bottom":
- if ( $corner_style === "bevel" ) {
- $left_line_width = $left / 4;
- $right_line_width = $right / 4;
-
- $points = array($x, $y,
- $x + $length, $y,
- $x + $length - $right_line_width, $y - $line_width,
- $x + $left_line_width, $y - $line_width);
- $this->_canvas->polygon($points, $color, null, null, true);
-
- $points = array($x + $left - $left_line_width, $y - $bottom + $line_width,
- $x + $length - $right + $right_line_width, $y - $bottom + $line_width,
- $x + $length - $right, $y - $bottom,
- $x + $left, $y - $bottom);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else {
- $this->_canvas->filled_rectangle($x, $y - $line_width, $length, $line_width, $color);
- $this->_canvas->filled_rectangle($x, $y - $bottom, $length, $line_width, $color);
- }
-
- break;
- case "left":
- if ( $corner_style === "bevel" ) {
- $top_line_width = $top / 4;
- $bottom_line_width = $bottom / 4;
-
- $points = array($x, $y,
- $x, $y + $length,
- $x + $line_width, $y + $length - $bottom_line_width,
- $x + $line_width, $y + $top_line_width);
- $this->_canvas->polygon($points, $color, null, null, true);
- $points = array($x + $left - $line_width, $y + $top - $top_line_width,
- $x + $left - $line_width, $y + $length - $bottom + $bottom_line_width,
- $x + $left, $y + $length - $bottom,
- $x + $left, $y + $top);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else {
- $this->_canvas->filled_rectangle($x, $y, $line_width, $length, $color);
- $this->_canvas->filled_rectangle($x + $left - $line_width, $y, $line_width, $length, $color);
- }
-
- break;
-
- case "right":
- if ( $corner_style === "bevel" ) {
- $top_line_width = $top / 4;
- $bottom_line_width = $bottom / 4;
-
-
- $points = array($x, $y,
- $x, $y + $length,
- $x - $line_width, $y + $length - $bottom_line_width,
- $x - $line_width, $y + $top_line_width);
- $this->_canvas->polygon($points, $color, null, null, true);
-
- $points = array($x - $right + $line_width, $y + $top - $top_line_width,
- $x - $right + $line_width, $y + $length - $bottom + $bottom_line_width,
- $x - $right, $y + $length - $bottom,
- $x - $right, $y + $top);
- $this->_canvas->polygon($points, $color, null, null, true);
- } else {
- $this->_canvas->filled_rectangle($x - $line_width, $y, $line_width, $length, $color);
- $this->_canvas->filled_rectangle($x - $right, $y, $line_width, $length, $color);
- }
-
- break;
- default:
- return;
- }
-
- }
- protected function _border_groove($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
-
- $half_widths = array($top / 2, $right / 2, $bottom / 2, $left / 2);
-
- $this->_border_inset($x, $y, $length, $color, $half_widths, $side);
- switch ($side) {
- case "top":
- $x += $left / 2;
- $y += $top / 2;
- $length -= $left / 2 + $right / 2;
- break;
- case "bottom":
- $x += $left / 2;
- $y -= $bottom / 2;
- $length -= $left / 2 + $right / 2;
- break;
- case "left":
- $x += $left / 2;
- $y += $top / 2;
- $length -= $top / 2 + $bottom / 2;
- break;
- case "right":
- $x -= $right / 2;
- $y += $top / 2;
- $length -= $top / 2 + $bottom / 2;
- break;
- default:
- return;
- }
- $this->_border_outset($x, $y, $length, $color, $half_widths, $side);
-
- }
-
- protected function _border_ridge($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
-
- $half_widths = array($top / 2, $right / 2, $bottom / 2, $left / 2);
-
- $this->_border_outset($x, $y, $length, $color, $half_widths, $side);
- switch ($side) {
- case "top":
- $x += $left / 2;
- $y += $top / 2;
- $length -= $left / 2 + $right / 2;
- break;
- case "bottom":
- $x += $left / 2;
- $y -= $bottom / 2;
- $length -= $left / 2 + $right / 2;
- break;
- case "left":
- $x += $left / 2;
- $y += $top / 2;
- $length -= $top / 2 + $bottom / 2;
- break;
- case "right":
- $x -= $right / 2;
- $y += $top / 2;
- $length -= $top / 2 + $bottom / 2;
- break;
- default:
- return;
- }
- $this->_border_inset($x, $y, $length, $color, $half_widths, $side);
- }
- protected function _tint($c) {
- if ( !is_numeric($c) )
- return $c;
-
- return min(1, $c + 0.66);
- }
- protected function _shade($c) {
- if ( !is_numeric($c) )
- return $c;
-
- return max(0, $c - 0.66);
- }
- protected function _border_inset($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
-
- switch ($side) {
- case "top":
- case "left":
- $shade = array_map(array($this, "_shade"), $color);
- $this->_border_solid($x, $y, $length, $shade, $widths, $side);
- break;
- case "bottom":
- case "right":
- $tint = array_map(array($this, "_tint"), $color);
- $this->_border_solid($x, $y, $length, $tint, $widths, $side);
- break;
- default:
- return;
- }
- }
-
- protected function _border_outset($x, $y, $length, $color, $widths, $side, $corner_style = "bevel") {
- list($top, $right, $bottom, $left) = $widths;
-
- switch ($side) {
- case "top":
- case "left":
- $tint = array_map(array($this, "_tint"), $color);
- $this->_border_solid($x, $y, $length, $tint, $widths, $side);
- break;
- case "bottom":
- case "right":
- $shade = array_map(array($this, "_shade"), $color);
- $this->_border_solid($x, $y, $length, $shade, $widths, $side);
- break;
- default:
- return;
- }
- }
- //........................................................................
-
- }
|