OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 /* | 6 /* |
7 * Copyright 2011 ZXing authors | 7 * Copyright 2011 ZXing authors |
8 * | 8 * |
9 * Licensed under the Apache License, Version 2.0 (the "License"); | 9 * Licensed under the Apache License, Version 2.0 (the "License"); |
10 * you may not use this file except in compliance with the License. | 10 * you may not use this file except in compliance with the License. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 FX_BOOL CBC_Code128::Encode(const CFX_WideStringC& contents, | 46 FX_BOOL CBC_Code128::Encode(const CFX_WideStringC& contents, |
47 FX_BOOL isDevice, | 47 FX_BOOL isDevice, |
48 int32_t& e) { | 48 int32_t& e) { |
49 if (contents.IsEmpty()) { | 49 if (contents.IsEmpty()) { |
50 e = BCExceptionNoContents; | 50 e = BCExceptionNoContents; |
51 return FALSE; | 51 return FALSE; |
52 } | 52 } |
53 BCFORMAT format = BCFORMAT_CODE_128; | 53 BCFORMAT format = BCFORMAT_CODE_128; |
54 int32_t outWidth = 0; | 54 int32_t outWidth = 0; |
55 int32_t outHeight = 0; | 55 int32_t outHeight = 0; |
56 CFX_WideString content = contents; | 56 CFX_WideString content(contents); |
57 if (contents.GetLength() % 2 && | 57 if (contents.GetLength() % 2 && |
58 ((CBC_OnedCode128Writer*)m_pBCWriter)->GetType() == BC_CODE128_C) { | 58 ((CBC_OnedCode128Writer*)m_pBCWriter)->GetType() == BC_CODE128_C) { |
59 content += '0'; | 59 content += '0'; |
60 } | 60 } |
61 CFX_WideString encodeContents = ((CBC_OnedCode128Writer*)m_pBCWriter) | 61 CFX_WideString encodeContents = ((CBC_OnedCode128Writer*)m_pBCWriter) |
62 ->FilterContents(content.AsStringC()); | 62 ->FilterContents(content.AsStringC()); |
63 m_renderContents = encodeContents; | 63 m_renderContents = encodeContents; |
64 CFX_ByteString byteString = encodeContents.UTF8Encode(); | 64 CFX_ByteString byteString = encodeContents.UTF8Encode(); |
65 uint8_t* data = static_cast<CBC_OnedCode128Writer*>(m_pBCWriter) | 65 uint8_t* data = static_cast<CBC_OnedCode128Writer*>(m_pBCWriter) |
66 ->Encode(byteString, format, outWidth, outHeight, e); | 66 ->Encode(byteString, format, outWidth, outHeight, e); |
(...skipping 27 matching lines...) Expand all Loading... |
94 int32_t& e) { | 94 int32_t& e) { |
95 CFX_WideString str; | 95 CFX_WideString str; |
96 return str; | 96 return str; |
97 } | 97 } |
98 | 98 |
99 CFX_WideString CBC_Code128::Decode(CFX_DIBitmap* pBitmap, int32_t& e) { | 99 CFX_WideString CBC_Code128::Decode(CFX_DIBitmap* pBitmap, int32_t& e) { |
100 CBC_BufferedImageLuminanceSource source(pBitmap); | 100 CBC_BufferedImageLuminanceSource source(pBitmap); |
101 CBC_GlobalHistogramBinarizer binarizer(&source); | 101 CBC_GlobalHistogramBinarizer binarizer(&source); |
102 CBC_BinaryBitmap bitmap(&binarizer); | 102 CBC_BinaryBitmap bitmap(&binarizer); |
103 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e); | 103 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e); |
104 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L"")); | 104 BC_EXCEPTION_CHECK_ReturnValue(e, CFX_WideString()); |
105 return CFX_WideString::FromUTF8(str.AsStringC()); | 105 return CFX_WideString::FromUTF8(str.AsStringC()); |
106 } | 106 } |
OLD | NEW |