Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: xfa/fxbarcode/cbc_code128.cpp

Issue 1862123003: Rename both As{Byte,Wide}StringC() helpers to AsStringC(). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase, fix new usage. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxbarcode/cbc_codabar.cpp ('k') | xfa/fxbarcode/cbc_code39.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
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.AsWideStringC()); 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);
67 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 67 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
68 ((CBC_OneDimWriter*)m_pBCWriter) 68 ((CBC_OneDimWriter*)m_pBCWriter)
69 ->RenderResult(encodeContents.AsWideStringC(), data, outWidth, isDevice, 69 ->RenderResult(encodeContents.AsStringC(), data, outWidth, isDevice, e);
70 e);
71 FX_Free(data); 70 FX_Free(data);
72 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 71 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
73 return TRUE; 72 return TRUE;
74 } 73 }
75 74
76 FX_BOOL CBC_Code128::RenderDevice(CFX_RenderDevice* device, 75 FX_BOOL CBC_Code128::RenderDevice(CFX_RenderDevice* device,
77 const CFX_Matrix* matirx, 76 const CFX_Matrix* matirx,
78 int32_t& e) { 77 int32_t& e) {
79 ((CBC_OneDimWriter*)m_pBCWriter) 78 ((CBC_OneDimWriter*)m_pBCWriter)
80 ->RenderDeviceResult(device, matirx, m_renderContents.AsWideStringC(), e); 79 ->RenderDeviceResult(device, matirx, m_renderContents.AsStringC(), e);
81 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 80 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
82 return TRUE; 81 return TRUE;
83 } 82 }
84 83
85 FX_BOOL CBC_Code128::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) { 84 FX_BOOL CBC_Code128::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) {
86 ((CBC_OneDimWriter*)m_pBCWriter) 85 ((CBC_OneDimWriter*)m_pBCWriter)
87 ->RenderBitmapResult(pOutBitmap, m_renderContents.AsWideStringC(), e); 86 ->RenderBitmapResult(pOutBitmap, m_renderContents.AsStringC(), e);
88 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 87 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
89 return TRUE; 88 return TRUE;
90 } 89 }
91 90
92 CFX_WideString CBC_Code128::Decode(uint8_t* buf, 91 CFX_WideString CBC_Code128::Decode(uint8_t* buf,
93 int32_t width, 92 int32_t width,
94 int32_t hight, 93 int32_t hight,
95 int32_t& e) { 94 int32_t& e) {
96 CFX_WideString str; 95 CFX_WideString str;
97 return str; 96 return str;
98 } 97 }
99 98
100 CFX_WideString CBC_Code128::Decode(CFX_DIBitmap* pBitmap, int32_t& e) { 99 CFX_WideString CBC_Code128::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
101 CBC_BufferedImageLuminanceSource source(pBitmap); 100 CBC_BufferedImageLuminanceSource source(pBitmap);
102 CBC_GlobalHistogramBinarizer binarizer(&source); 101 CBC_GlobalHistogramBinarizer binarizer(&source);
103 CBC_BinaryBitmap bitmap(&binarizer); 102 CBC_BinaryBitmap bitmap(&binarizer);
104 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e); 103 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e);
105 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L"")); 104 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L""));
106 return CFX_WideString::FromUTF8(str.AsByteStringC()); 105 return CFX_WideString::FromUTF8(str.AsStringC());
107 } 106 }
OLDNEW
« no previous file with comments | « xfa/fxbarcode/cbc_codabar.cpp ('k') | xfa/fxbarcode/cbc_code39.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698