File: Operators.cs

package info (click to toggle)
pdfmod 0.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,196 kB
  • ctags: 9,346
  • sloc: cs: 50,590; xml: 1,177; sh: 709; makefile: 640
file content (368 lines) | stat: -rw-r--r-- 14,830 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#region PDFsharp - A .NET library for processing PDF
//
// Authors:
//   Stefan Lange (mailto:Stefan.Lange@pdfsharp.com)
//
// Copyright (c) 2005-2008 empira Software GmbH, Cologne (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.Diagnostics;
using System.Collections;
using System.Text;

namespace PdfSharp.Pdf.Content.Objects
{
  /// <summary>
  /// Represents a PDF content stream operator description.
  /// </summary>
  public sealed class OpCode
  {
    OpCode() { }

    /// <summary>
    /// Initializes a new instance of the <see cref="OpCode"/> class.
    /// </summary>
    /// <param name="name">The name.</param>
    /// <param name="opcodeName">The enum value of the operator.</param>
    /// <param name="operands">The number of operands.</param>
    /// <param name="postscript">The postscript equvalent, or null, if no such operation exists.</param>
    /// <param name="flags">The flags.</param>
    /// <param name="description">The description from Adobe PDF Reference.</param>
    internal OpCode(string name, OpCodeName opcodeName, int operands, string postscript, OpCodeFlags flags, string description)
    {
      Name = name;
      OpCodeName = opcodeName;
      Operands = operands;
      Postscript = postscript;
      Flags = flags;
      Description = description;
    }

    /// <summary>
    /// The name of the operator.
    /// </summary>
    public readonly string Name;

    /// <summary>
    /// The enum value of the operator.
    /// </summary>
    public readonly OpCodeName OpCodeName;

    /// <summary>
    /// The number of operands. -1 indicates a variable number of operands.
    /// </summary>
    public readonly int Operands;

    /// <summary>
    /// The flags.
    /// </summary>
    public readonly OpCodeFlags Flags;

    /// <summary>
    /// The postscript equvalent, or null, if no such operation exists.
    /// </summary>
    public readonly string Postscript;

    /// <summary>
    /// The description from Adobe PDF Reference.
    /// </summary>
    public readonly string Description;
  }

  /// <summary>
  /// Static class with all PDF op-codes.
  /// </summary>
  sealed class OpCodes
  {
    OpCodes() { }

    /// <summary>
    /// Operators from name.
    /// </summary>
    /// <param name="name">The name.</param>
    /// <returns></returns>
    static public COperator OperatorFromName(string name)
    {
      COperator op = null;
      OpCode opcode = OpCodes.stringToOpCode[name] as OpCode;
      if (opcode != null)
      {
        op = new COperator(opcode);
      }
      else
      {
        Debug.Assert(false, "Unknown operator in PDF content stream.");
      }
      return op;
    }

    /// <summary>
    /// Initializes the <see cref="OpCodes"/> class.
    /// </summary>
    static OpCodes()
    {
      OpCodes.stringToOpCode = new Hashtable();

      for (int idx = 0; idx < OpCodes.ops.Length; idx++)
      {
        OpCode op = OpCodes.ops[idx];
        OpCodes.stringToOpCode.Add(op.Name, op);
      }
    }
    static Hashtable stringToOpCode;

    static OpCode b = new OpCode("b", OpCodeName.b, 0, "closepath, fill, stroke", OpCodeFlags.None,
      "Close, fill, and stroke path using nonzero winding number");

    static OpCode B = new OpCode("B", OpCodeName.B, 0, "fill, stroke", OpCodeFlags.None,
      "Fill and stroke path using nonzero winding number rule");

    static OpCode bx = new OpCode("b*", OpCodeName.bx, 0, "closepath, eofill, stroke", OpCodeFlags.None,
      "Close, fill, and stroke path using even-odd rule");

    static OpCode Bx = new OpCode("B*", OpCodeName.Bx, 0, "eofill, stroke", OpCodeFlags.None,
      "Fill and stroke path using even-odd rule");

    static OpCode BDC = new OpCode("BDC", OpCodeName.BDC, 2, null, OpCodeFlags.None,
      "(PDF 1.2) Begin marked-content sequence with property list");

    static OpCode BI = new OpCode("BI", OpCodeName.BI, 0, null, OpCodeFlags.None,
      "Begin inline image object");

    static OpCode BMC = new OpCode("BMC", OpCodeName.BMC, 1, null, OpCodeFlags.None,
      "(PDF 1.2) Begin marked-content sequence");

    static OpCode BT = new OpCode("BT", OpCodeName.BT, 0, null, OpCodeFlags.None,
      "Begin text object");

    static OpCode BX = new OpCode("BX", OpCodeName.BX, 0, null, OpCodeFlags.None,
      "(PDF 1.1) Begin compatibility section");

    static OpCode c = new OpCode("c", OpCodeName.c, 6, "curveto", OpCodeFlags.None,
      "Append curved segment to path (three control points)");

    static OpCode cm = new OpCode("cm", OpCodeName.cm, 6, "concat", OpCodeFlags.None,
      "Concatenate matrix to current transformation matrix");

    static OpCode CS = new OpCode("CS", OpCodeName.CS, 1, "setcolorspace", OpCodeFlags.None,
      "(PDF 1.1) Set color space for stroking operations");

    static OpCode cs = new OpCode("cs", OpCodeName.cs, 1, "setcolorspace", OpCodeFlags.None,
      "(PDF 1.1) Set color space for nonstroking operations");

    static OpCode d = new OpCode("d", OpCodeName.d, 2, "setdash", OpCodeFlags.None,
      "Set line dash pattern");

    static OpCode d0 = new OpCode("d0", OpCodeName.d0, 2, "setcharwidth", OpCodeFlags.None,
      "Set glyph width in Type 3 font");

    static OpCode d1 = new OpCode("d1", OpCodeName.d1, 6, "setcachedevice", OpCodeFlags.None,
      "Set glyph width and bounding box in Type 3 font");

    static OpCode Do = new OpCode("Do", OpCodeName.Do, 1, null, OpCodeFlags.None,
      "Invoke named XObject");

    static OpCode DP = new OpCode("DP", OpCodeName.DP, 2, null, OpCodeFlags.None,
      "(PDF 1.2) Define marked-content point with property list");

    static OpCode EI = new OpCode("EI", OpCodeName.EI, 0, null, OpCodeFlags.None,
      "End inline image object");

    static OpCode EMC = new OpCode("EMC", OpCodeName.EMC, 0, null, OpCodeFlags.None,
      "(PDF 1.2) End marked-content sequence");

    static OpCode ET = new OpCode("ET", OpCodeName.ET, 0, null, OpCodeFlags.None,
      "End text object");

    static OpCode EX = new OpCode("EX", OpCodeName.EX, 0, null, OpCodeFlags.None,
      "(PDF 1.1) End compatibility section");

    static OpCode f = new OpCode("f", OpCodeName.f, 0, "fill", OpCodeFlags.None,
      "Fill path using nonzero winding number rule");

    static OpCode F = new OpCode("F", OpCodeName.F, 0, "fill", OpCodeFlags.None,
      "Fill path using nonzero winding number rule (obsolete)");

    static OpCode fx = new OpCode("f*", OpCodeName.fx, 0, "eofill", OpCodeFlags.None,
      "Fill path using even-odd rule");

    static OpCode G = new OpCode("G", OpCodeName.G, 1, "setgray", OpCodeFlags.None,
      "Set gray level for stroking operations");

    static OpCode g = new OpCode("g", OpCodeName.g, 1, "setgray", OpCodeFlags.None,
      "Set gray level for nonstroking operations");

    static OpCode gs = new OpCode("gs", OpCodeName.gs, 1, null, OpCodeFlags.None,
      "(PDF 1.2) Set parameters from graphics state parameter dictionary");

    static OpCode h = new OpCode("h", OpCodeName.h, 0, "closepath", OpCodeFlags.None,
      "Close subpath");

    static OpCode i = new OpCode("i", OpCodeName.i, 1, "setflat", OpCodeFlags.None,
      "Set flatness tolerance");

    static OpCode ID = new OpCode("ID", OpCodeName.ID, 0, null, OpCodeFlags.None,
      "Begin inline image data");

    static OpCode j = new OpCode("j", OpCodeName.j, 1, "setlinejoin", OpCodeFlags.None,
      "Set line join style");

    static OpCode J = new OpCode("J", OpCodeName.J, 1, "setlinecap", OpCodeFlags.None,
      "Set line cap style");

    static OpCode K = new OpCode("K", OpCodeName.K, 4, "setcmykcolor", OpCodeFlags.None,
      "Set CMYK color for stroking operations");

    static OpCode k = new OpCode("k", OpCodeName.k, 4, "setcmykcolor", OpCodeFlags.None,
      "Set CMYK color for nonstroking operations");

    static OpCode l = new OpCode("l", OpCodeName.l, 2, "lineto", OpCodeFlags.None,
      "Append straight line segment to path");

    static OpCode m = new OpCode("m", OpCodeName.m, 2, "moveto", OpCodeFlags.None,
      "Begin new subpath");

    static OpCode M = new OpCode("M", OpCodeName.M, 1, "setmiterlimit", OpCodeFlags.None,
      "Set miter limit");

    static OpCode MP = new OpCode("MP", OpCodeName.MP, 1, null, OpCodeFlags.None,
      "(PDF 1.2) Define marked-content point");

    static OpCode n = new OpCode("n", OpCodeName.n, 0, null, OpCodeFlags.None,
      "End path without filling or stroking");

    static OpCode q = new OpCode("q", OpCodeName.q, 0, "gsave", OpCodeFlags.None,
      "Save graphics state");

    static OpCode Q = new OpCode("Q", OpCodeName.Q, 0, "grestore", OpCodeFlags.None,
      "Restore graphics state");

    static OpCode re = new OpCode("re", OpCodeName.re, 4, null, OpCodeFlags.None,
      "Append rectangle to path");

    static OpCode RG = new OpCode("RG", OpCodeName.RG, 3, "setrgbcolor", OpCodeFlags.None,
      "Set RGB color for stroking operations");

    static OpCode rg = new OpCode("rg", OpCodeName.rg, 3, "setrgbcolor", OpCodeFlags.None,
      "Set RGB color for nonstroking operations");

    static OpCode ri = new OpCode("ri", OpCodeName.ri, 1, null, OpCodeFlags.None,
      "Set color rendering intent");

    static OpCode s = new OpCode("s", OpCodeName.s, 0, "closepath,stroke", OpCodeFlags.None,
      "Close and stroke path");

    static OpCode S = new OpCode("S", OpCodeName.S, 0, "stroke", OpCodeFlags.None,
      "Stroke path");

    static OpCode SC = new OpCode("SC", OpCodeName.SC, -1, "setcolor", OpCodeFlags.None,
      "(PDF 1.1) Set color for stroking operations");

    static OpCode sc = new OpCode("sc", OpCodeName.sc, -1, "setcolor", OpCodeFlags.None,
      "(PDF 1.1) Set color for nonstroking operations");

    static OpCode SCN = new OpCode("SCN", OpCodeName.SCN, -1, "setcolor", OpCodeFlags.None,
      "(PDF 1.2) Set color for stroking operations (ICCBased and special color spaces)");

    static OpCode scn = new OpCode("scn", OpCodeName.scn, -1, "setcolor", OpCodeFlags.None,
      "(PDF 1.2) Set color for nonstroking operations (ICCBased and special color spaces)");

    static OpCode sh = new OpCode("sh", OpCodeName.sh, 1, "shfill", OpCodeFlags.None,
      "(PDF 1.3) Paint area defined by shading pattern");

    static OpCode Tx = new OpCode("T*", OpCodeName.Tx, 0, null, OpCodeFlags.None,
      "Move to start of next text line");

    static OpCode Tc = new OpCode("Tc", OpCodeName.Tc, 1, null, OpCodeFlags.None,
      "Set character spacing");

    static OpCode Td = new OpCode("Td", OpCodeName.Td, 2, null, OpCodeFlags.None,
      "Move text position");

    static OpCode TD = new OpCode("TD", OpCodeName.TD, 2, null, OpCodeFlags.None,
      "Move text position and set leading");

    static OpCode Tf = new OpCode("Tf", OpCodeName.Tf, 2, "selectfont", OpCodeFlags.None,
      "Set text font and size");

    static OpCode Tj = new OpCode("Tj", OpCodeName.Tj, 1, "show", OpCodeFlags.TextOut,
      "Show text");

    static OpCode TJ = new OpCode("TJ", OpCodeName.TJ, 1, null, OpCodeFlags.TextOut,
      "Show text, allowing individual glyph positioning");

    static OpCode TL = new OpCode("TL", OpCodeName.TL, 1, null, OpCodeFlags.None,
      "Set text leading");

    static OpCode Tm = new OpCode("Tm", OpCodeName.Tm, 6, null, OpCodeFlags.None,
      "Set text matrix and text line matrix");

    static OpCode Tr = new OpCode("Tr", OpCodeName.Tr, 1, null, OpCodeFlags.None,
      "Set text rendering mode");

    static OpCode Ts = new OpCode("Ts", OpCodeName.Ts, 1, null, OpCodeFlags.None,
      "Set text rise");

    static OpCode Tw = new OpCode("Tw", OpCodeName.Tw, 1, null, OpCodeFlags.None,
      "Set word spacing");

    static OpCode Tz = new OpCode("Tz", OpCodeName.Tz, 1, null, OpCodeFlags.None,
      "Set horizontal text scaling");

    static OpCode v = new OpCode("v", OpCodeName.v, 4, "curveto", OpCodeFlags.None,
      "Append curved segment to path (initial point replicated)");

    static OpCode w = new OpCode("w", OpCodeName.w, 1, "setlinewidth", OpCodeFlags.None,
      "Set line width");

    static OpCode W = new OpCode("W", OpCodeName.W, 0, "clip", OpCodeFlags.None,
      "Set clipping path using nonzero winding number rule");

    static OpCode Wx = new OpCode("W*", OpCodeName.Wx, 0, "eoclip", OpCodeFlags.None,
      "Set clipping path using even-odd rule");

    static OpCode y = new OpCode("y", OpCodeName.y, 4, "curveto", OpCodeFlags.None,
      "Append curved segment to path (final point replicated)");

    static OpCode QuoteSingle = new OpCode("'", OpCodeName.QuoteSingle, 1, null, OpCodeFlags.TextOut,
      "Move to next line and show text");

    static OpCode QuoteDbl = new OpCode("\"", OpCodeName.QuoteDbl, 3, null, OpCodeFlags.TextOut,
      "Set word and character spacing, move to next line, and show text");

    /// <summary>
    /// Array of all OpCodes.
    /// </summary>
    static OpCode[] ops = new OpCode[]
      { 
        // Must be defined behind the code above to ensure that the values are initialized.
        b, B, bx, Bx, BDC, BI, BMC, BT, BX, c, cm, CS, cs, d, d0, d1, Do,
        DP, EI, EMC, ET, EX, f, F, fx, G, g, gs, h, i, ID, j, J, K, k, l, m, M, MP,
        n, q, Q, re, RG, rg, ri, s, S, SC, sc, SCN, scn, sh,
        Tx, Tc, Td, TD, Tf, Tj, TJ, TL, Tm, Tr, Ts, Tw, Tz, v, w, W, Wx, y,
        QuoteSingle, QuoteDbl
      };
  }
}