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

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

Issue 1857073002: Make down-conversion explicit from CFX_Widetring to CFX_WideStringC. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: String argument type 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/fwl/core/fwl_formimp.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, data, outWidth, isDevice, e); 80 ->RenderResult(filtercontents.AsWideStringC(), data, outWidth, isDevice,
81 e);
81 FX_Free(data); 82 FX_Free(data);
82 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 83 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
83 return TRUE; 84 return TRUE;
84 } 85 }
85 86
86 FX_BOOL CBC_Codabar::RenderDevice(CFX_RenderDevice* device, 87 FX_BOOL CBC_Codabar::RenderDevice(CFX_RenderDevice* device,
87 const CFX_Matrix* matirx, 88 const CFX_Matrix* matirx,
88 int32_t& e) { 89 int32_t& e) {
89 CFX_WideString renderCon = 90 CFX_WideString renderCon =
90 ((CBC_OnedCodaBarWriter*)m_pBCWriter)->encodedContents(m_renderContents); 91 ((CBC_OnedCodaBarWriter*)m_pBCWriter)
92 ->encodedContents(m_renderContents.AsWideStringC());
91 ((CBC_OneDimWriter*)m_pBCWriter) 93 ((CBC_OneDimWriter*)m_pBCWriter)
92 ->RenderDeviceResult(device, matirx, renderCon, e); 94 ->RenderDeviceResult(device, matirx, renderCon.AsWideStringC(), e);
93 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 95 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
94 return TRUE; 96 return TRUE;
95 } 97 }
96 98
97 FX_BOOL CBC_Codabar::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) { 99 FX_BOOL CBC_Codabar::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) {
98 CFX_WideString renderCon = 100 CFX_WideString renderCon =
99 ((CBC_OnedCodaBarWriter*)m_pBCWriter)->encodedContents(m_renderContents); 101 ((CBC_OnedCodaBarWriter*)m_pBCWriter)
102 ->encodedContents(m_renderContents.AsWideStringC());
100 ((CBC_OneDimWriter*)m_pBCWriter) 103 ((CBC_OneDimWriter*)m_pBCWriter)
101 ->RenderBitmapResult(pOutBitmap, renderCon, e); 104 ->RenderBitmapResult(pOutBitmap, renderCon.AsWideStringC(), e);
102 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); 105 BC_EXCEPTION_CHECK_ReturnValue(e, FALSE);
103 return TRUE; 106 return TRUE;
104 } 107 }
105 108
106 CFX_WideString CBC_Codabar::Decode(uint8_t* buf, 109 CFX_WideString CBC_Codabar::Decode(uint8_t* buf,
107 int32_t width, 110 int32_t width,
108 int32_t hight, 111 int32_t hight,
109 int32_t& e) { 112 int32_t& e) {
110 CFX_WideString str; 113 CFX_WideString str;
111 return str; 114 return str;
112 } 115 }
113 116
114 CFX_WideString CBC_Codabar::Decode(CFX_DIBitmap* pBitmap, int32_t& e) { 117 CFX_WideString CBC_Codabar::Decode(CFX_DIBitmap* pBitmap, int32_t& e) {
115 CBC_BufferedImageLuminanceSource source(pBitmap); 118 CBC_BufferedImageLuminanceSource source(pBitmap);
116 CBC_GlobalHistogramBinarizer binarizer(&source); 119 CBC_GlobalHistogramBinarizer binarizer(&source);
117 CBC_BinaryBitmap bitmap(&binarizer); 120 CBC_BinaryBitmap bitmap(&binarizer);
118 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e); 121 CFX_ByteString str = m_pBCReader->Decode(&bitmap, 0, e);
119 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L"")); 122 BC_EXCEPTION_CHECK_ReturnValue(e, FX_WSTRC(L""));
120 return CFX_WideString::FromUTF8(str, str.GetLength()); 123 return CFX_WideString::FromUTF8(str, str.GetLength());
121 } 124 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/fwl_formimp.cpp ('k') | xfa/fxbarcode/cbc_code128.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698