OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 // Original code is licensed as follows: | 6 // Original code is licensed as follows: |
7 /* | 7 /* |
8 * Copyright 2010 ZXing authors | 8 * Copyright 2010 ZXing authors |
9 * | 9 * |
10 * Licensed under the Apache License, Version 2.0 (the "License"); | 10 * Licensed under the Apache License, Version 2.0 (the "License"); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 } | 63 } |
64 } | 64 } |
65 return filtercontents; | 65 return filtercontents; |
66 } | 66 } |
67 int32_t CBC_OnedUPCAWriter::CalcChecksum(const CFX_ByteString& contents) { | 67 int32_t CBC_OnedUPCAWriter::CalcChecksum(const CFX_ByteString& contents) { |
68 int32_t odd = 0; | 68 int32_t odd = 0; |
69 int32_t even = 0; | 69 int32_t even = 0; |
70 int32_t j = 1; | 70 int32_t j = 1; |
71 for (int32_t i = contents.GetLength() - 1; i >= 0; i--) { | 71 for (int32_t i = contents.GetLength() - 1; i >= 0; i--) { |
72 if (j % 2) { | 72 if (j % 2) { |
73 odd += FXSYS_atoi(contents.Mid(i, 1)); | 73 odd += FXSYS_atoi(contents.Mid(i, 1).c_str()); |
74 } else { | 74 } else { |
75 even += FXSYS_atoi(contents.Mid(i, 1)); | 75 even += FXSYS_atoi(contents.Mid(i, 1).c_str()); |
76 } | 76 } |
77 j++; | 77 j++; |
78 } | 78 } |
79 int32_t checksum = (odd * 3 + even) % 10; | 79 int32_t checksum = (odd * 3 + even) % 10; |
80 checksum = (10 - checksum) % 10; | 80 checksum = (10 - checksum) % 10; |
81 return (checksum); | 81 return (checksum); |
82 } | 82 } |
83 uint8_t* CBC_OnedUPCAWriter::Encode(const CFX_ByteString& contents, | 83 uint8_t* CBC_OnedUPCAWriter::Encode(const CFX_ByteString& contents, |
84 BCFORMAT format, | 84 BCFORMAT format, |
85 int32_t& outWidth, | 85 int32_t& outWidth, |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 } | 277 } |
278 FX_Free(pCharPos); | 278 FX_Free(pCharPos); |
279 } | 279 } |
280 void CBC_OnedUPCAWriter::RenderResult(const CFX_WideStringC& contents, | 280 void CBC_OnedUPCAWriter::RenderResult(const CFX_WideStringC& contents, |
281 uint8_t* code, | 281 uint8_t* code, |
282 int32_t codeLength, | 282 int32_t codeLength, |
283 FX_BOOL isDevice, | 283 FX_BOOL isDevice, |
284 int32_t& e) { | 284 int32_t& e) { |
285 CBC_OneDimWriter::RenderResult(contents, code, codeLength, isDevice, e); | 285 CBC_OneDimWriter::RenderResult(contents, code, codeLength, isDevice, e); |
286 } | 286 } |
OLD | NEW |