You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZXBarcodeFormat.h 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright 2012 ZXing authors
  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. * Enumerates barcode formats known to this package. Please keep alphabetized.
  18. */
  19. typedef enum {
  20. /** Aztec 2D barcode format. */
  21. kBarcodeFormatAztec,
  22. /** CODABAR 1D format. */
  23. kBarcodeFormatCodabar,
  24. /** Code 39 1D format. */
  25. kBarcodeFormatCode39,
  26. /** Code 93 1D format. */
  27. kBarcodeFormatCode93,
  28. /** Code 128 1D format. */
  29. kBarcodeFormatCode128,
  30. /** Data Matrix 2D barcode format. */
  31. kBarcodeFormatDataMatrix,
  32. /** EAN-8 1D format. */
  33. kBarcodeFormatEan8,
  34. /** EAN-13 1D format. */
  35. kBarcodeFormatEan13,
  36. /** ITF (Interleaved Two of Five) 1D format. */
  37. kBarcodeFormatITF,
  38. /** MaxiCode 2D barcode format. */
  39. kBarcodeFormatMaxiCode,
  40. /** PDF417 format. */
  41. kBarcodeFormatPDF417,
  42. /** QR Code 2D barcode format. */
  43. kBarcodeFormatQRCode,
  44. /** RSS 14 */
  45. kBarcodeFormatRSS14,
  46. /** RSS EXPANDED */
  47. kBarcodeFormatRSSExpanded,
  48. /** UPC-A 1D format. */
  49. kBarcodeFormatUPCA,
  50. /** UPC-E 1D format. */
  51. kBarcodeFormatUPCE,
  52. /** UPC/EAN extension format. Not a stand-alone format. */
  53. kBarcodeFormatUPCEANExtension
  54. } ZXBarcodeFormat;