forked from syncfusion/xamarin-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Barcode.cs
442 lines (313 loc) · 17.1 KB
/
Barcode.cs
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#region Copyright Syncfusion Inc. 2001-2022.
// Copyright Syncfusion Inc. 2001-2022. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Syncfusion.Pdf.Barcode;
using System.IO;
using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf;
using Syncfusion.Drawing;
namespace SampleBrowser
{
public partial class Barcode : SamplePage
{
private Context m_context;
public override View GetSampleContent(Context con)
{
LinearLayout linear = new LinearLayout(con);
linear.SetBackgroundColor(Android.Graphics.Color.White);
linear.Orientation = Orientation.Vertical;
linear.SetPadding(10, 10, 10, 10);
TextView space = new TextView(con);
space.TextSize = 10;
linear.AddView(space);
TextView text2 = new TextView(con);
text2.TextSize = 17;
text2.TextAlignment = TextAlignment.Center;
text2.Text = "This sample demonstrates how to create various barcode in a PDF document.";
text2.SetTextColor(Android.Graphics.Color.ParseColor("#262626"));
text2.SetPadding(5, 5, 5, 5);
linear.AddView(text2);
TextView space1 = new TextView(con);
space1.TextSize = 10;
linear.AddView(space1);
m_context = con;
TextView space2 = new TextView(con);
space2.TextSize = 10;
linear.AddView(space2);
Button button1 = new Button(con);
button1.Text = "Generate PDF";
button1.Click += OnButtonClicked;
linear.AddView(button1);
return linear;
}
void OnButtonClicked(object sender, EventArgs e)
{
//Create a new instance of PdfDocument class.
PdfDocument document = new PdfDocument();
//Add a new page to the document.
PdfPage page = document.Pages.Add();
//Create Pdf graphics for the page
PdfGraphics g = page.Graphics;
//Create a solid brush
PdfBrush brush = PdfBrushes.Black;
# region 2D Barcode
//Set the font
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 15f, PdfFontStyle.Bold);
PdfPen pen = new PdfPen(brush, 0.5f);
float width = page.GetClientSize().Width;
float xPos = page.GetClientSize().Width / 2;
PdfStringFormat format = new PdfStringFormat();
format.Alignment = PdfTextAlignment.Center;
// Draw String
g.DrawString("2D Barcodes", font, brush, new PointF(xPos, 10), format);
#region QR Barcode
font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold);
g.DrawString("QR Barcode", font, brush, new PointF(10, 70));
PdfQRBarcode qrBarcode = new PdfQRBarcode();
// Sets the Input mode to Binary mode
qrBarcode.InputMode = InputMode.BinaryMode;
// Automatically select the Version
qrBarcode.Version = QRCodeVersion.Auto;
// Set the Error correction level to high
qrBarcode.ErrorCorrectionLevel = PdfErrorCorrectionLevel.High;
// Set dimension for each block
qrBarcode.XDimension = 2;
qrBarcode.Text = "Syncfusion Essential Studio Enterprise edition $995";
// Draw the QR barcode
qrBarcode.Draw(page, new PointF(25, 100));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Input Type : Eight Bit Binary", font, brush, new PointF(250, 140));
g.DrawString("Encoded Data : Syncfusion Essential Studio Enterprise edition $995", font, brush, new PointF(250, 160));
g.DrawLine(pen, new PointF(0, 230), new PointF(width, 230));
#endregion
#region Datamatrix
font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold);
g.DrawString("DataMatrix Barcode", font, brush, new PointF(10, 270));
PdfDataMatrixBarcode dataMatrixBarcode = new PdfDataMatrixBarcode("5575235 Win7 4GB 64bit 7Jun2010");
// Set dimension for each block
dataMatrixBarcode.XDimension = 4;
// Draw the barcode
dataMatrixBarcode.Draw(page, new PointF(25, 310));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Symbol Type : Square", font, brush, new PointF(250, 360));
g.DrawString("Encoded Data : 5575235 Win7 4GB 64bit 7Jun2010", font, brush, new PointF(250, 380));
pen = new PdfPen(brush, 0.5f);
g.DrawLine(pen, new PointF(0, 430), new PointF(width, 430));
string text = "TYPE 3523 - ETWS/N FE- SDFHW 06/08";
dataMatrixBarcode = new PdfDataMatrixBarcode(text);
// rectangular matrix
dataMatrixBarcode.Size = PdfDataMatrixSize.Size16x48;
dataMatrixBarcode.XDimension = 4;
dataMatrixBarcode.Draw(page, new PointF(25, 470));
g.DrawString("Symbol Type : Rectangle", font, brush, new PointF(250, 490));
g.DrawString("Encoded Data : " + text, font, brush, new PointF(250, 510));
pen = new PdfPen(brush, 0.5f);
g.DrawLine(pen, new PointF(0, 570), new PointF(width, 570));
font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold);
g.DrawString("PDF417 Barcode", font, brush, new PointF(10, 620));
Pdf417Barcode pdf417Barcode = new Pdf417Barcode();
pdf417Barcode.Text = "https://www.syncfusion.com/";
pdf417Barcode.ErrorCorrectionLevel = Pdf417ErrorCorrectionLevel.Auto;
pdf417Barcode.XDimension = 1f;
pdf417Barcode.Size = new SizeF(200, 50);
pdf417Barcode.Draw(page,new PointF(25,670));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Encoded Data : https://www.syncfusion.com/", font, brush, new PointF(250, 680));
#endregion
# endregion
page = document.Pages.Add();
g = page.Graphics;
//Set the font
font = new PdfStandardFont(PdfFontFamily.Helvetica, 15f, PdfFontStyle.Bold);
// Draw String
g.DrawString("1D/Linear Barcodes", font, brush, new PointF(150, 10));
// Set string format.
format = new PdfStringFormat();
format.WordWrap = PdfWordWrapType.Word;
#region Code39
// Drawing Code39 barcode
PdfCode39Barcode barcode = new PdfCode39Barcode();
// Setting height of the barcode
barcode.BarHeight = 45;
barcode.Text = "CODE39$";
//Printing barcode on to the Pdf.
barcode.Draw(page, new PointF(25, 70));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : Code39", font, brush, new PointF(250, 80));
g.DrawString("Allowed Characters : 0-9, A-Z,a dash(-),a dot(.),$,/,+,%, SPACE", font, brush, new PointF(250, 100));
g.DrawLine(pen, new PointF(0, 150), new PointF(width, 150));
#endregion
#region Code39Extended
// Drawing Code39Extended barcode
PdfCode39ExtendedBarcode barcodeExt = new PdfCode39ExtendedBarcode();
// Setting height of the barcode
barcodeExt.BarHeight = 45;
barcodeExt.Text = "CODE39Ext";
//Printing barcode on to the Pdf.
barcodeExt.Draw(page, new PointF(25, 200));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : Code39Ext", font, brush, new PointF(250, 210));
g.DrawString("Allowed Characters : 0-9 A-Z a-z ", font, brush, new PointF(250, 230));
g.DrawLine(pen, new PointF(0, 270), new PointF(width, 270));
#endregion
#region Code11Barcode
// Drawing Code11 barcode
PdfCode11Barcode barcode11 = new PdfCode11Barcode();
// Setting height of the barcode
barcode11.BarHeight = 45;
barcode11.Text = "012345678";
barcode11.EncodeStartStopSymbols = true;
//Printing barcode on to the Pdf.
barcode11.Draw(page, new PointF(25, 300));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : Code 11", font, brush, new PointF(250, 310));
g.DrawString("Allowed Characters : 0-9, a dash(-) ", font, brush, new PointF(250, 330));
g.DrawLine(pen, new PointF(0, 370), new PointF(width, 370));
#endregion
#region Codabar
// Drawing CodaBarcode
PdfCodabarBarcode codabar = new PdfCodabarBarcode();
// Setting height of the barcode
codabar.BarHeight = 45;
codabar.Text = "0123";
//Printing barcode on to the Pdf.
codabar.Draw(page, new PointF(25, 400));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : Codabar", font, brush, new PointF(250, 410));
g.DrawString("Allowed Characters : A,B,C,D,0-9,-$,:,/,a dot(.),+ ", font, brush, new PointF(250, 430));
g.DrawLine(pen, new PointF(0, 470), new PointF(width, 470));
#endregion
#region Code32
PdfCode32Barcode code32 = new PdfCode32Barcode();
code32.Font = font;
// Setting height of the barcode
code32.BarHeight = 45;
code32.Text = "01234567";
code32.TextDisplayLocation = TextLocation.Bottom;
code32.EnableCheckDigit = true;
code32.ShowCheckDigit = true;
//Printing barcode on to the Pdf.
code32.Draw(page, new PointF(25, 500));
g.DrawString("Type : Code32", font, brush, new PointF(250, 500));
g.DrawString("Allowed Characters : 1 2 3 4 5 6 7 8 9 0 ", font, brush, new PointF(250, 520));
g.DrawLine(pen, new Syncfusion.Drawing.PointF(0, 580), new Syncfusion.Drawing.PointF(width, 580));
#endregion
#region Code93
PdfCode93Barcode code93 = new PdfCode93Barcode();
// Setting height of the barcode
code93.BarHeight = 45;
code93.Text = "ABC 123456789";
//Printing barcode on to the Pdf.
code93.Draw(page, new PointF(25, 600));
g.DrawString("Type : Code93", font, brush, new PointF(250, 600));
g.DrawString("Allowed Characters : 1 2 3 4 5 6 7 8 9 0 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z - . $ / + % SPACE ", font, brush, new RectangleF(250, 620, 300, 200), format);
g.DrawLine(pen, new PointF(0, 680), new PointF(width, 680));
#endregion
#region Code93Extended
PdfCode93ExtendedBarcode code93ext = new PdfCode93ExtendedBarcode();
//Setting height of the barcode
code93ext.BarHeight = 45;
code93ext.EncodeStartStopSymbols = true;
code93ext.Text = "(abc) 123456";
//Printing barcode on to the Pdf.
page = document.Pages.Add();
code93ext.Draw(page, new PointF(25, 50));
g = page.Graphics;
g.DrawString("Type : Code93 Extended", font, brush, new PointF(250, 50));
g.DrawString("Allowed Characters : All 128 ASCII characters ", font, brush, new PointF(250, 70));
g.DrawLine(pen, new PointF(0, 120), new PointF(width, 120));
#endregion
#region Code128
PdfCode128ABarcode barcode128A = new PdfCode128ABarcode();
// Setting height of the barcode
barcode128A.BarHeight = 45;
barcode128A.Text = "ABCD 12345";
barcode128A.EnableCheckDigit = true;
barcode128A.EncodeStartStopSymbols = true;
barcode128A.ShowCheckDigit = true;
//Printing barcode on to the Pdf.
barcode128A.Draw(page, new PointF(25, 135));
g.DrawString("Type : Code128 A", font, brush, new PointF(250, 135));
g.DrawString("Allowed Characters : NUL (0x00) SOH (0x01) STX (0x02) ETX (0x03) EOT (0x04) ENQ (0x05) ACK (0x06) BEL (0x07) BS (0x08) HT (0x09) LF (0x0A) VT (0x0B) FF (0x0C) CR (0x0D) SO (0x0E) SI (0x0F) DLE (0x10) DC1 (0x11) DC2 (0x12) DC3 (0x13) DC4 (0x14) NAK (0x15) SYN (0x16) ETB (0x17) CAN (0x18) EM (0x19) SUB (0x1A) ESC (0x1B) FS (0x1C) GS (0x1D) RS (0x1E) US (0x1F) SPACE (0x20) \" ! # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ / ]^ _ ", font, brush, new RectangleF(250, 155, 300, 200), format);
g.DrawLine(pen, new PointF(0, 250), new PointF(width, 250));
PdfCode128BBarcode barcode128B = new PdfCode128BBarcode();
// Setting height of the barcode
barcode128B.BarHeight = 45;
barcode128B.Text = "12345 abcd";
barcode128B.EnableCheckDigit = true;
barcode128B.EncodeStartStopSymbols = true;
barcode128B.ShowCheckDigit = true;
//Printing barcode on to the Pdf.
barcode128B.Draw(page, new PointF(25, 280));
g.DrawString("Type : Code128 B", font, brush, new PointF(250, 280));
g.DrawString("Allowed Characters : SPACE (0x20) ! \" # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ / ]^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ DEL (\x7F) ", font, brush, new RectangleF(250, 300, 300, 200), format);
g.DrawLine(pen, new PointF(0, 350), new PointF(width, 350));
PdfCode128CBarcode barcode128C = new PdfCode128CBarcode();
// Setting height of the barcode
barcode128C.BarHeight = 45;
barcode128C.Text = "001122334455";
barcode128C.EnableCheckDigit = true;
barcode128C.EncodeStartStopSymbols = true;
barcode128C.ShowCheckDigit = true;
//Printing barcode on to the Pdf.
barcode128C.Draw(page, new PointF(25, 370));
g.DrawString("Type : Code128 C", font, brush, new PointF(250, 370));
g.DrawString("Allowed Characters : 0 1 2 3 4 5 6 7 8 9 ", font, brush, new PointF(250, 390));
g.DrawLine(pen, new PointF(0, 440), new PointF(width, 440));
#endregion
#region UPC-A
// Drawing UPC-A barcode
PdfCodeUpcBarcode upcBarcode = new PdfCodeUpcBarcode();
// Setting height of the barcode
upcBarcode.BarHeight = 45;
upcBarcode.Text = "01234567890";
//Printing barcode on to the Pdf.
upcBarcode.Draw(page, new PointF(25, 460));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : UPC-A", font, brush, new PointF(250, 460));
g.DrawString("Allowed Characters : 0-9", font, brush, new PointF(250, 480));
g.DrawLine(pen, new PointF(0, 530), new PointF(width, 530));
#endregion
#region EAN13
PdfEan13Barcode ean13barcode = new PdfEan13Barcode();
ean13barcode.Text = "012345678910";
ean13barcode.Draw(page, new RectangleF(15, 550,150,50));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : EAN-13", font, brush, new PointF(250, 550));
g.DrawString("Allowed Characters : 0-9", font, brush, new PointF(250, 570));
g.DrawLine(pen, new PointF(0, 620), new PointF(width, 620));
#endregion
#region EAN8
PdfEan8Barcode ean8barcode = new PdfEan8Barcode();
ean8barcode.Text = "0123456";
ean8barcode.Draw(page, new PointF(25, 640));
font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9, PdfFontStyle.Regular);
g.DrawString("Type : EAN-8", font, brush, new PointF(250, 640));
g.DrawString("Allowed Characters : 0-9", font, brush, new PointF(250, 660));
g.DrawLine(pen, new PointF(0, 720), new PointF(width, 720));
#endregion
MemoryStream stream = new MemoryStream();
document.Save(stream);
document.Close();
if (stream != null)
{
SaveAndroid androidSave = new SaveAndroid();
androidSave.Save("Barcode.pdf", "application/pdf", stream, m_context);
}
}
}
}