Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Vision / MediaVision / BarcodeType.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Multimedia
18 {
19     /// <summary>
20     /// Specifies the supported barcode types.
21     /// </summary>
22     /// <remarks>
23     /// QR codes (versions 1 to 40) and set of 1D barcodes are supported
24     /// </remarks>
25     /// <seealso cref="BarcodeDetector"/>
26     /// <seealso cref="BarcodeGenerator"/>
27     /// <since_tizen> 3</since_tizen>
28     public enum BarcodeType
29     {
30         /// <summary>
31         /// 2D barcode - Quick Response code.
32         /// </summary>
33         /// <since_tizen> 3</since_tizen>
34         QR,
35         /// <summary>
36         /// 1D barcode - Universal Product Code with 12-digit.
37         /// </summary>
38         /// <since_tizen> 3</since_tizen>
39         UpcA,
40         /// <summary>
41         /// 1D barcode - Universal Product Code with 6-digit.
42         /// </summary>
43         /// <since_tizen> 3</since_tizen>
44         UpcE,
45         /// <summary>
46         /// 1D barcode - International Article Number with 8-digit.
47         /// </summary>
48         /// <since_tizen> 3</since_tizen>
49         Ean8,
50         /// <summary>
51         /// 1D barcode - International Article Number with 13-digit.
52         /// </summary>
53         /// <since_tizen> 3</since_tizen>
54         Ean13,
55         /// <summary>
56         /// 1D barcode - Code 128.
57         /// </summary>
58         /// <since_tizen> 3</since_tizen>
59         Code128,
60         /// <summary>
61         /// 1D barcode - Code 39.
62         /// </summary>
63         /// <since_tizen> 3</since_tizen>
64         Code39,
65         /// <summary>
66         /// 1D barcode - Interleaved Two of Five.
67         /// </summary>
68         /// <since_tizen> 3</since_tizen>
69         I25
70     }
71 }