Quantcast
Channel: Jerry Huang - Cool stuff
Viewing all articles
Browse latest Browse all 2

scan barcode from TIFF

$
0
0

http://www.codeproject.com/KB/graphics/BarcodeImaging3.aspx

The ariticle above is really something awesome, you may easily scan barcode in an image, pure managed code. It supports Code39, Code39ex, Code128, EAN, EAN-2, EAN-5.

Together with below utility class, I used it in an application to scan barcode from tiff

Code
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
using System;using System.IO;using System.Drawing;using System.Drawing.Imaging;   
using System.Collections;namespace AMA.Util
{
 /// <summary>
 /// Summary description for TiffManager.
 /// </summary>
 publicclass TiffManager : IDisposable
 {
  privatestring _ImageFileName;
  privateint _PageNumber;
  private Image image;
  privatestring _TempWorkingDir;


  public TiffManager(string imageFileName)
  {
   this._ImageFileName=imageFileName;
   image=Image.FromFile(_ImageFileName);
   GetPageNumber();
  }
  
  public TiffManager(){
  }


  /// <summary>
  /// Read the image file for the page number.
  /// </summary>
  privatevoid GetPageNumber(){
   Guid objGuid=image.FrameDimensionsList[0];
   FrameDimension objDimension=new FrameDimension(objGuid);


   //Gets the total number of frames in the .tiff file
   _PageNumber=image.GetFrameCount(objDimension);
   
   return;
  }


  /// <summary>
  /// Read the image base string,
  /// Assert(GetFileNameStartString(@"c:\test\abc.tif"),"abc")
  /// </summary>
  /// <param name="strFullName"></param>
  /// <returns></returns>
  privatestring GetFileNameStartString(string strFullName){
   int posDot=_ImageFileName.LastIndexOf(".");
   int posSlash=_ImageFileName.LastIndexOf(@"\");
   return _ImageFileName.Substring(posSlash+1,posDot-posSlash-1);
  }


  /// <summary>
  /// This function will output the image to a TIFF file with specific compression format
  /// </summary>
  /// <param name="outPutDirectory">The splited images' directory</param>
  /// <param name="format">The codec for compressing</param>
  /// <returns>splited file name array list</returns>
  public ArrayList SplitTiffImage(string outPutDirectory,EncoderValue format)
  {
   string fileStartString=outPutDirectory+"<a href="file://\\"+GetFileNameStartString(_ImageFileName">\\"+GetFileNameStartString(_ImageFileName</a>);
   ArrayList splitedFileNames=new ArrayList();
   try{
    Guid objGuid=image.FrameDimensionsList[0];
    FrameDimension objDimension=new FrameDimension(objGuid);


    //Saves every frame as a separate file.
    Encoder enc=Encoder.Compression;
    int curFrame=0;
    for (int i=0;i<_PageNumber;i++)
    {
     image.SelectActiveFrame(objDimension,curFrame);
     EncoderParameters ep=new EncoderParameters(1);
     ep.Param[0]=new EncoderParameter(enc,(long)format);
     ImageCodecInfo info=GetEncoderInfo("image/tiff");
     
     //Save the master bitmap
     string fileName=string.Format("{0}{1}.TIF",fileStartString,i.ToString());
     image.Save(fileName,info,ep);
     splitedFileNames.Add(fileName);


     curFrame++;
    } 
   }catch (Exception){
    throw;
   }
   
   return splitedFileNames;
  }


  /// <summary>
  /// This function will join the TIFF file with a specific compression format
  /// </summary>
  /// <param name="imageFiles">string array with source image files</param>
  /// <param name="outFile">target TIFF file to be produced</param>
  /// <param name="compressEncoder">compression codec enum</param>
  publicvoid JoinTiffImages(string[] imageFiles,string outFile,EncoderValue compressEncoder)
  {
   try{
    //If only one page in the collection, copy it directly to the target file.
    if (imageFiles.Length==1)
    {
     File.Copy(imageFiles[0],outFile,true);
     return;
    }


    //use the save encoder
    Encoder enc=Encoder.SaveFlag;


    EncoderParameters ep=new EncoderParameters(2);
    ep.Param[0]=new EncoderParameter(enc,(long)EncoderValue.MultiFrame); 
    ep.Param[1] =new EncoderParameter(Encoder.Compression,(long)compressEncoder);


    Bitmap pages=null;
    int frame=0;
    ImageCodecInfo info=GetEncoderInfo("image/tiff");



    foreach(string strImageFile in imageFiles)
    {
     if(frame==0)
     {
      pages=(Bitmap)Image.FromFile(strImageFile);


      //save the first frame
      pages.Save(outFile,info,ep);
     }
     else
     {
      //save the intermediate frames
      ep.Param[0]=new EncoderParameter(enc,(long)EncoderValue.FrameDimensionPage);


      Bitmap bm=(Bitmap)Image.FromFile(strImageFile);
      pages.SaveAdd(bm,ep);
     }       


     if(frame==imageFiles.Length-1)
     {
      //flush and close.
      ep.Param[0]=new EncoderParameter(enc,(long)EncoderValue.Flush);
      pages.SaveAdd(ep);
     }


     frame++;
    }
   }catch (Exception){
    throw;
   }
   
   return;
  }


  /// <summary>
  /// This function will join the TIFF file with a specific compression format
  /// </summary>
  /// <param name="imageFiles">array list with source image files</param>
  /// <param name="outFile">target TIFF file to be produced</param>
  /// <param name="compressEncoder">compression codec enum</param>
  publicvoid JoinTiffImages(ArrayList imageFiles,string outFile,EncoderValue compressEncoder)
  {
   try
   {
    //If only one page in the collection, copy it directly to the target file.
    if (imageFiles.Count==1){
     File.Copy((string)imageFiles[0],outFile,true);
     return;
    }


    //use the save encoder
    Encoder enc=Encoder.SaveFlag;


    EncoderParameters ep=new EncoderParameters(2);
    ep.Param[0]=new EncoderParameter(enc,(long)EncoderValue.MultiFrame); 
    ep.Param[1] =new EncoderParameter(Encoder.Compression,(long)compressEncoder);


    Bitmap pages=null;
    int frame=0;
    ImageCodecInfo info=GetEncoderInfo("image/tiff");



    foreach(string strImageFile in imageFiles)
    {
     if(frame==0)
     {
      pages=(Bitmap)Image.FromFile(strImageFile);


      //save the first frame
      pages.Save(outFile,info,ep);
     }
     else
     {
      //save the intermediate frames
      ep.Param[0]=new EncoderParameter(enc,(long)EncoderValue.FrameDimensionPage);


      Bitmap bm=(Bitmap)Image.FromFile(strImageFile);
      pages.SaveAdd(bm,ep);
      bm.Dispose();
     }       


     if(frame==imageFiles.Count-1)
     {
      //flush and close.
      ep.Param[0]=new EncoderParameter(enc,(long)EncoderValue.Flush);
      pages.SaveAdd(ep);
     }


     frame++;
    }
   }
   catch (Exception ex)
   {
#if DEBUG
    Console.WriteLine(ex.Message);
#endif
    throw;
   }
   
   return;
  }


  /// <summary>
  /// Remove a specific page within the image object and save the result to an output image file.
  /// </summary>
  /// <param name="pageNumber">page number to be removed</param>
  /// <param name="compressEncoder">compress encoder after operation</param>
  /// <param name="strFileName">filename to be outputed</param>
  /// <returns></</returns>
  publicvoid RemoveAPage(int pageNumber,EncoderValue compressEncoder,string strFileName){
   try
   {
    //Split the image files to single pages.
    ArrayList arrSplited=SplitTiffImage(this._TempWorkingDir,compressEncoder);
    
    //Remove the specific page from the collection
    string strPageRemove=string.Format("{0}\\{1}{2}.TIF",_TempWorkingDir,GetFileNameStartString(this._ImageFileName),pageNumber);
    arrSplited.Remove(strPageRemove);


    JoinTiffImages(arrSplited,strFileName,compressEncoder);
   }
   catch(Exception)
   {
    throw;
   }


   return;
  }


  /// <summary>
  /// Getting the supported codec info.
  /// </summary>
  /// <param name="mimeType">description of mime type</param>
  /// <returns>image codec info</returns>
  private ImageCodecInfo GetEncoderInfo(string mimeType){
   ImageCodecInfo[] encoders=ImageCodecInfo.GetImageEncoders();
   for (int j=0;j<encoders.Length;j++){
    if (encoders[j].MimeType==mimeType)
     return encoders[j];
   }
   
   thrownew Exception( mimeType +" mime type not found in ImageCodecInfo" );
  }


  /// <summary>
  /// Return the memory steam of a specific page
  /// </summary>
  /// <param name="pageNumber">page number to be extracted</param>
  /// <returns>image object</returns>
  public Image GetSpecificPage(int pageNumber)
  {
   MemoryStream ms=null;
   Image retImage=null;
   try
   {
                ms=new MemoryStream();
    Guid objGuid=image.FrameDimensionsList[0];
    FrameDimension objDimension=new FrameDimension(objGuid);


    image.SelectActiveFrame(objDimension,pageNumber);
    image.Save(ms,ImageFormat.Bmp);
    
    retImage=Image.FromStream(ms);


    return retImage;
   }
   catch (Exception)
   {
    ms.Close();
    retImage.Dispose();
    throw;
   }
  }


  /// <summary>
  /// Convert the existing TIFF to a different codec format
  /// </summary>
  /// <param name="compressEncoder"></param>
  /// <returns></returns>
  publicvoid ConvertTiffFormat(string strNewImageFileName,EncoderValue compressEncoder)
  {
   //Split the image files to single pages.
   ArrayList arrSplited=SplitTiffImage(this._TempWorkingDir,compressEncoder);
   JoinTiffImages(arrSplited,strNewImageFileName,compressEncoder);


   return;
  }


  /// <summary>
  /// Image file to operate
  /// </summary>
  publicstring ImageFileName
  {
   get
   {
    return _ImageFileName;
   }
   set{
    _ImageFileName=value;
   }
  }


  /// <summary>
  /// Buffering directory
  /// </summary>
  publicstring TempWorkingDir
  {
   get
   {
    return _TempWorkingDir;
   }
   set{
    _TempWorkingDir=value;
   }
  }


  /// <summary>
  /// Image page number
  /// </summary>
  publicint PageNumber
  {
   get
   {
    return _PageNumber;
   }
  }


 
  #region IDisposable Members


  publicvoid Dispose()
  {
   image.Dispose();
   System.GC.SuppressFinalize(this);
  }


  #endregion
 }
}

Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images