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

Side by Side Diff: xfa/src/fxbarcode/src/BC_QRCodeWriter.cpp

Issue 842043002: Organize barcode codes into modules. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: rebase Created 5 years, 11 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/src/fxbarcode/src/BC_QRCodeReader.cpp ('k') | xfa/src/fxbarcode/src/BC_QRCoder.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 // Original code is licensed as follows:
7 /*
8 * Copyright 2008 ZXing authors
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License");
11 * you may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 */
22
23 #include "barcode.h"
24 #include "include/BC_TwoDimWriter.h"
25 #include "include/BC_Reader.h"
26 #include "include/BC_QRCodeWriter.h"
27 #include "include/BC_QRCoderEncoder.h"
28 #include "include/BC_QRCoder.h"
29 #include "include/BC_CommonByteMatrix.h"
30 #include "include/BC_QRCodeReader.h"
31 #include "include/BC_QRCoderErrorCorrectionLevel.h"
32 CBC_QRCodeWriter::CBC_QRCodeWriter()
33 {
34 m_bFixedSize = TRUE;
35 m_iCorrectLevel = 1;
36 m_iVersion = 0;
37 }
38 CBC_QRCodeWriter::~CBC_QRCodeWriter()
39 {
40 }
41 void CBC_QRCodeWriter::ReleaseAll()
42 {
43 CBC_QRCodeReader::ReleaseAll();
44 }
45 FX_BOOL CBC_QRCodeWriter::SetVersion(FX_INT32 version)
46 {
47 if (version < 0 || version > 40) {
48 return FALSE;
49 }
50 m_iVersion = version;
51 return TRUE;
52 }
53 FX_BOOL CBC_QRCodeWriter::SetErrorCorrectionLevel(FX_INT32 level)
54 {
55 if (level < 0 || level > 3) {
56 return FALSE;
57 }
58 m_iCorrectLevel = level;
59 return TRUE;
60 }
61 FX_BYTE* CBC_QRCodeWriter::Encode(const CFX_WideString& contents, FX_INT32 ecLev el, FX_INT32 &outWidth, FX_INT32 &outHeight, FX_INT32 &e)
62 {
63 CBC_QRCoderErrorCorrectionLevel *ec = NULL;
64 switch(ecLevel) {
65 case 0:
66 ec = CBC_QRCoderErrorCorrectionLevel::L;
67 break;
68 case 1:
69 ec = CBC_QRCoderErrorCorrectionLevel::M;
70 break;
71 case 2:
72 ec = CBC_QRCoderErrorCorrectionLevel::Q;
73 break;
74 case 3:
75 ec = CBC_QRCoderErrorCorrectionLevel::H;
76 break;
77 default: {
78 e = BCExceptionUnSupportEclevel;
79 BC_EXCEPTION_CHECK_ReturnValue(e, NULL);
80 }
81 }
82 CBC_QRCoder qr;
83 if (m_iVersion > 0 && m_iVersion < 41) {
84 CFX_ByteString byteStr = contents.UTF8Encode();
85 CBC_QRCoderEncoder::Encode(byteStr, ec, &qr, e, m_iVersion);
86 } else {
87 CBC_QRCoderEncoder::Encode(contents, ec, &qr, e);
88 }
89 BC_EXCEPTION_CHECK_ReturnValue(e, NULL);
90 outWidth = qr.GetMatrixWidth();
91 outHeight = qr.GetMatrixWidth();
92 FX_BYTE* result = FX_Alloc(FX_BYTE, outWidth * outWidth);
93 FXSYS_memcpy32(result, qr.GetMatrix()->GetArray(), outWidth * outHeight);
94 return result;
95 }
96 FX_BYTE *CBC_QRCodeWriter::Encode(const CFX_ByteString& contents, BCFORMAT forma t, FX_INT32 &outWidth, FX_INT32 &outHeight, FX_INT32 hints, FX_INT32 &e)
97 {
98 return NULL;
99 }
100 FX_BYTE* CBC_QRCodeWriter::Encode(const CFX_ByteString& contents, BCFORMAT forma t, FX_INT32 &outWidth, FX_INT32 &outHeight, FX_INT32 &e)
101 {
102 return NULL;
103 }
OLDNEW
« no previous file with comments | « xfa/src/fxbarcode/src/BC_QRCodeReader.cpp ('k') | xfa/src/fxbarcode/src/BC_QRCoder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698