#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 namespace PdfSharp.Drawing.BarCodes { /// /// Represents the base class of all codes. /// public abstract class CodeBase { /// /// Initializes a new instance of the class. /// public CodeBase(string text, XSize size, CodeDirection direction) { _text = text; _size = size; _direction = direction; } //public static CodeBase 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)); // } //} //public static CodeBase FromType(CodeType type, string text, XSize size) //{ // return FromType(type, text, size, CodeDirection.LeftToRight); //} //public static CodeBase FromType(CodeType type, string text) //{ // return FromType(type, text, XSize.Empty, CodeDirection.LeftToRight); //} //public static CodeBase FromType(CodeType type) //{ // return FromType(type, String.Empty, XSize.Empty, CodeDirection.LeftToRight); //} /// /// Gets or sets the size. /// public XSize Size { get { return _size; } set { _size = value; } } XSize _size; /// /// Gets or sets the text the bar code shall represent. /// public string Text { get { return _text; } set { CheckCode(value); _text = value; } } string _text; /// /// Always MiddleCenter. /// public AnchorType Anchor { get { return _anchor; } set { _anchor = value; } } AnchorType _anchor; /// /// Gets or sets the drawing direction. /// public CodeDirection Direction { get { return _direction; } set { _direction = value; } } CodeDirection _direction; /// /// When implemented in a derived class, determines whether the specified string can be used as Text /// for this bar code type. /// /// The code string to check. /// True if the text can be used for the actual barcode. protected abstract void CheckCode(string text); /// /// Calculates the distance between an old anchor point and a new anchor point. /// /// /// /// public static XVector CalcDistance(AnchorType oldType, AnchorType newType, XSize size) { if (oldType == newType) return new XVector(); XVector result; Delta delta = Deltas[(int)oldType, (int)newType]; result = new XVector(size.Width / 2 * delta.X, size.Height / 2 * delta.Y); return result; } struct Delta { public Delta(int x, int y) { X = x; Y = y; } public readonly int X; public readonly int Y; } static readonly Delta[,] Deltas = new Delta[9, 9] { { new Delta(0, 0), new Delta(1, 0), new Delta(2, 0), new Delta(0, 1), new Delta(1, 1), new Delta(2, 1), new Delta(0, 2), new Delta(1, 2), new Delta(2, 2) }, { new Delta(-1, 0), new Delta(0, 0), new Delta(1, 0), new Delta(-1, 1), new Delta(0, 1), new Delta(1, 1), new Delta(-1, 2), new Delta(0, 2), new Delta(1, 2) }, { new Delta(-2, 0), new Delta(-1, 0), new Delta(0, 0), new Delta(-2, 1), new Delta(-1, 1), new Delta(0, 1), new Delta(-2, 2), new Delta(-1, 2), new Delta(0, 2) }, { new Delta(0, -1), new Delta(1, -1), new Delta(2, -1), new Delta(0, 0), new Delta(1, 0), new Delta(2, 0), new Delta(0, 1), new Delta(1, 1), new Delta(2, 1) }, { new Delta(-1, -1), new Delta(0, -1), new Delta(1, -1), new Delta(-1, 0), new Delta(0, 0), new Delta(1, 0), new Delta(-1, 1), new Delta(0, 1), new Delta(1, 1) }, { new Delta(-2, -1), new Delta(-1, -1), new Delta(0, -1), new Delta(-2, 0), new Delta(-1, 0), new Delta(0, 0), new Delta(-2, 1), new Delta(-1, 1), new Delta(0, 1) }, { new Delta(0, -2), new Delta(1, -2), new Delta(2, -2), new Delta(0, -1), new Delta(1, -1), new Delta(2, -1), new Delta(0, 0), new Delta(1, 0), new Delta(2, 0) }, { new Delta(-1, -2), new Delta(0, -2), new Delta(1, -2), new Delta(-1, -1), new Delta(0, -1), new Delta(1, -1), new Delta(-1, 0), new Delta(0, 0), new Delta(1, 0) }, { new Delta(-2, -2), new Delta(-1, -2), new Delta(0, -2), new Delta(-2, -1), new Delta(-1, -1), new Delta(0, -1), new Delta(-2, 0), new Delta(-1, 0), new Delta(0, 0) }, }; } }