Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ZXQRCodeDataBlock.h 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. @class ZXByteArray, ZXQRCodeErrorCorrectionLevel, ZXQRCodeVersion;
  17. /**
  18. * Encapsulates a block of data within a QR Code. QR Codes may split their data into
  19. * multiple blocks, each of which is a unit of data and error-correction codewords. Each
  20. * is represented by an instance of this class.
  21. */
  22. @interface ZXQRCodeDataBlock : NSObject
  23. @property (nonatomic, strong, readonly) ZXByteArray *codewords;
  24. @property (nonatomic, assign, readonly) int numDataCodewords;
  25. - (id)initWithNumDataCodewords:(int)numDataCodewords codewords:(ZXByteArray *)codewords;
  26. /**
  27. * When QR Codes use multiple data blocks, they are actually interleaved.
  28. * That is, the first byte of data block 1 to n is written, then the second bytes, and so on. This
  29. * method will separate the data into original blocks.
  30. *
  31. * @param rawCodewords bytes as read directly from the QR Code
  32. * @param version version of the QR Code
  33. * @param ecLevel error-correction level of the QR Code
  34. * @return DataBlocks containing original bytes, "de-interleaved" from representation in the
  35. * QR Code
  36. */
  37. + (NSArray *)dataBlocks:(ZXByteArray *)rawCodewords version:(ZXQRCodeVersion *)version ecLevel:(ZXQRCodeErrorCorrectionLevel *)ecLevel;
  38. @end