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

Side by Side Diff: xfa/fxbarcode/cbc_codabar.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/BC_UtilCodingConvert.cpp ('k') | xfa/fxbarcode/cbc_code128.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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 int32_t outWidth = 0; 70 int32_t outWidth = 0;
71 int32_t outHeight = 0; 71 int32_t outHeight = 0;
72 CFX_WideString filtercontents = 72 CFX_WideString filtercontents =
73 ((CBC_OneDimWriter*)m_pBCWriter)->FilterContents(contents); 73 ((CBC_OneDimWriter*)m_pBCWriter)->FilterContents(contents);
74 CFX_ByteString byteString = filtercontents.UTF8Encode(); 74 CFX_ByteString byteString = filtercontents.UTF8Encode();
75 m_renderContents = filtercontents; 75 m_renderContents = filtercontents;
76 uint8_t* data = static_cast<CBC_OnedCodaBarWriter*>(m_pBCWriter) 76 uint8_t* data = static_cast<CBC_OnedCodaBarWriter*>(m_pBCWriter)
77 ->Encode(byteString, format, outWidth, outHeight, e); 77 ->Encode(byteString, format, outWidth, outHeight, e);
78 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 78 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
79 ((CBC_OneDimWriter*)m_pBCWriter) 79 ((CBC_OneDimWriter*)m_pBCWriter)
80 ->RenderResult(filtercontents.AsWideStringC(), data, outWidth, isDevice, 80 ->RenderResult(filtercontents.AsStringC(), data, outWidth, isDevice, e);
81 e);
82 FX_Free(data); 81 FX_Free(data);
83 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 82 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
84 return TRUE; 83 return TRUE;
85 } 84 }
86 85
87 FX_BOOL CBC_Codabar::RenderDevice(CFX_RenderDevice* device, 86 FX_BOOL CBC_Codabar::RenderDevice(CFX_RenderDevice* device,
88 const CFX_Matrix* matirx, 87 const CFX_Matrix* matirx,
89 int32_t& e) { 88 int32_t& e) {
90 CFX_WideString renderCon = 89 CFX_WideString renderCon =
91 ((CBC_OnedCodaBarWriter*)m_pBCWriter) 90 ((CBC_OnedCodaBarWriter*)m_pBCWriter)
92 ->encodedContents(m_renderContents.AsWideStringC()); 91 ->encodedContents(m_renderContents.AsStringC());
93 ((CBC_OneDimWriter*)m_pBCWriter) 92 ((CBC_OneDimWriter*)m_pBCWriter)
94 ->RenderDeviceResult(device, matirx, renderCon.AsWideStringC(), e); 93 ->RenderDeviceResult(device, matirx, renderCon.AsStringC(), e);
95 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 94 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
96 return TRUE; 95 return TRUE;
97 } 96 }
98 97
99 FX_BOOL CBC_Codabar::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) { 98 FX_BOOL CBC_Codabar::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) {
100 CFX_WideString renderCon = 99 CFX_WideString renderCon =
101 ((CBC_OnedCodaBarWriter*)m_pBCWriter) 100 ((CBC_OnedCodaBarWriter*)m_pBCWriter)
102 ->encodedContents(m_renderContents.AsWideStringC()); 101 ->encodedContents(m_renderContents.AsStringC());
103 ((CBC_OneDimWriter*)m_pBCWriter) 102 ((CBC_OneDimWriter*)m_pBCWriter)
104 ->RenderBitmapResult(pOutBitmap, renderCon.AsWideStringC(), e); 103 ->RenderBitmapResult(pOutBitmap, renderCon.AsStringC(), e);
105 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 104 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
106 return TRUE; 105 return TRUE;
107 } 106 }
108 107
109 CFX_WideString CBC_Codabar::Decode(uint8_t* buf, 108 CFX_WideString CBC_Codabar::Decode(uint8_t* buf,
110 int32_t width, 109 int32_t width,
111 int32_t hight, 110 int32_t hight,
112 int32_t& e) { 111 int32_t& e) {
113 CFX_WideString str; 112 CFX_WideString str;
114 return str; 113 return str;
115 } 114 }
116 115
117 CFX_WideString CBC_Codabar::Decode(CFX_DIBitmap* pBitmap, int32_t& e) { 116 CFX_WideString CBC_Codabar::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
118 CBC_BufferedImageLuminanceSource source(pBitmap); 117 CBC_BufferedImageLuminanceSource source(pBitmap);
119 CBC_GlobalHistogramBinarizer binarizer(&source); 118 CBC_GlobalHistogramBinarizer binarizer(&source);
120 CBC_BinaryBitmap bitmap(&binarizer); 119 CBC_BinaryBitmap bitmap(&binarizer);
121 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e); 120 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e);
122 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L"")); 121 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L""));
123 return CFX_WideString::FromUTF8(str.AsByteStringC()); 122 return CFX_WideString::FromUTF8(str.AsStringC());
124 } 123 }
OLDNEW
« no previous file with comments | « xfa/fxbarcode/BC_UtilCodingConvert.cpp ('k') | xfa/fxbarcode/cbc_code128.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698