#region PDFsharp - A .NET library for processing PDF // // Authors: // Klaus Potzesny // // Copyright (c) 2005-2017 empira Software GmbH, Cologne Area (Germany) // // http://www.pdfsharp.com // http://sourceforge.net/projects/pdfsharp // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #endregion using System; using System.ComponentModel; namespace PdfSharp.Drawing.BarCodes { /// /// Represents the base class of all bar codes. /// public abstract class BarCode : CodeBase { /// /// Initializes a new instance of the class. /// /// /// /// public BarCode(string text, XSize size, CodeDirection direction) : base(text, size, direction) { Text = text; Size = size; Direction = direction; } /// /// Creates a bar code from the specified code type. /// public static BarCode FromType(CodeType type, string text, XSize size, CodeDirection direction) { switch (type) { case CodeType.Code2of5Interleaved: return new Code2of5Interleaved(text, size, direction); case CodeType.Code3of9Standard: return new Code3of9Standard(text, size, direction); default: throw new InvalidEnumArgumentException("type", (int)type, typeof(CodeType)); } } /// /// Creates a bar code from the specified code type. /// public static BarCode FromType(CodeType type, string text, XSize size) { return FromType(type, text, size, CodeDirection.LeftToRight); } /// /// Creates a bar code from the specified code type. /// public static BarCode FromType(CodeType type, string text) { return FromType(type, text, XSize.Empty, CodeDirection.LeftToRight); } /// /// Creates a bar code from the specified code type. /// public static BarCode FromType(CodeType type) { return FromType(type, String.Empty, XSize.Empty, CodeDirection.LeftToRight); } /// /// When overridden in a derived class gets or sets the wide narrow ratio. /// public virtual double WideNarrowRatio { get { return 0; } set { } } /// /// Gets or sets the location of the text next to the bar code. /// public TextLocation TextLocation { get { return _textLocation; } set { _textLocation = value; } } TextLocation _textLocation; /// /// Gets or sets the length of the data that defines the bar code. /// public int DataLength { get { return _dataLength; } set { _dataLength = value; } } int _dataLength; /// /// Gets or sets the optional start character. /// public char StartChar { get { return _startChar; } set { _startChar = value; } } char _startChar; /// /// Gets or sets the optional end character. /// public char EndChar { get { return _endChar; } set { _endChar = value; } } char _endChar; /// /// Gets or sets a value indicating whether the turbo bit is to be drawn. /// (A turbo bit is something special to Kern (computer output processing) company (as far as I know)) /// public virtual bool TurboBit { get { return _turboBit; } set { _turboBit = value; } } bool _turboBit; internal virtual void InitRendering(BarCodeRenderInfo info) { if (Text == null) throw new InvalidOperationException(BcgSR.BarCodeNotSet); if (Size.IsEmpty) throw new InvalidOperationException(BcgSR.EmptyBarCodeSize); } /// /// When defined in a derived class renders the code. /// protected internal abstract void Render(XGraphics gfx, XBrush brush, XFont font, XPoint position); } }