OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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 // Original code is licensed as follows: | 6 // Original code is licensed as follows: |
7 /* | 7 /* |
8 * Copyright 2008 ZXing authors | 8 * Copyright 2008 ZXing authors |
9 * | 9 * |
10 * Licensed under the Apache License, Version 2.0 (the "License"); | 10 * Licensed under the Apache License, Version 2.0 (the "License"); |
11 * you may not use this file except in compliance with 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 | 12 * You may obtain a copy of the License at |
13 * | 13 * |
14 * http://www.apache.org/licenses/LICENSE-2.0 | 14 * http://www.apache.org/licenses/LICENSE-2.0 |
15 * | 15 * |
16 * Unless required by applicable law or agreed to in writing, software | 16 * Unless required by applicable law or agreed to in writing, software |
17 * distributed under the License is distributed on an "AS IS" BASIS, | 17 * distributed under the License is distributed on an "AS IS" BASIS, |
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
19 * See the License for the specific language governing permissions and | 19 * See the License for the specific language governing permissions and |
20 * limitations under the License. | 20 * limitations under the License. |
21 */ | 21 */ |
22 | 22 |
23 #include "xfa/src/fxbarcode/BC_BinaryBitmap.h" | 23 #include "xfa/fxbarcode/BC_BinaryBitmap.h" |
24 #include "xfa/src/fxbarcode/BC_Dimension.h" | 24 #include "xfa/fxbarcode/BC_Dimension.h" |
25 #include "xfa/src/fxbarcode/BC_TwoDimWriter.h" | 25 #include "xfa/fxbarcode/BC_TwoDimWriter.h" |
26 #include "xfa/src/fxbarcode/BC_UtilCodingConvert.h" | 26 #include "xfa/fxbarcode/BC_UtilCodingConvert.h" |
27 #include "xfa/src/fxbarcode/BC_Writer.h" | 27 #include "xfa/fxbarcode/BC_Writer.h" |
28 #include "xfa/src/fxbarcode/common/BC_CommonBitMatrix.h" | 28 #include "xfa/fxbarcode/common/BC_CommonBitMatrix.h" |
29 #include "xfa/src/fxbarcode/common/BC_CommonByteMatrix.h" | 29 #include "xfa/fxbarcode/common/BC_CommonByteMatrix.h" |
30 #include "xfa/src/fxbarcode/datamatrix/BC_ASCIIEncoder.h" | 30 #include "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.h" |
31 #include "xfa/src/fxbarcode/datamatrix/BC_Base256Encoder.h" | 31 #include "xfa/fxbarcode/datamatrix/BC_Base256Encoder.h" |
32 #include "xfa/src/fxbarcode/datamatrix/BC_C40Encoder.h" | 32 #include "xfa/fxbarcode/datamatrix/BC_C40Encoder.h" |
33 #include "xfa/src/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h" | 33 #include "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h" |
34 #include "xfa/src/fxbarcode/datamatrix/BC_DataMatrixWriter.h" | 34 #include "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h" |
35 #include "xfa/src/fxbarcode/datamatrix/BC_DefaultPlacement.h" | 35 #include "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h" |
36 #include "xfa/src/fxbarcode/datamatrix/BC_EdifactEncoder.h" | 36 #include "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.h" |
37 #include "xfa/src/fxbarcode/datamatrix/BC_Encoder.h" | 37 #include "xfa/fxbarcode/datamatrix/BC_Encoder.h" |
38 #include "xfa/src/fxbarcode/datamatrix/BC_EncoderContext.h" | 38 #include "xfa/fxbarcode/datamatrix/BC_EncoderContext.h" |
39 #include "xfa/src/fxbarcode/datamatrix/BC_ErrorCorrection.h" | 39 #include "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.h" |
40 #include "xfa/src/fxbarcode/datamatrix/BC_HighLevelEncoder.h" | 40 #include "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.h" |
41 #include "xfa/src/fxbarcode/datamatrix/BC_SymbolInfo.h" | 41 #include "xfa/fxbarcode/datamatrix/BC_SymbolInfo.h" |
42 #include "xfa/src/fxbarcode/datamatrix/BC_SymbolShapeHint.h" | 42 #include "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.h" |
43 #include "xfa/src/fxbarcode/datamatrix/BC_TextEncoder.h" | 43 #include "xfa/fxbarcode/datamatrix/BC_TextEncoder.h" |
44 #include "xfa/src/fxbarcode/datamatrix/BC_X12Encoder.h" | 44 #include "xfa/fxbarcode/datamatrix/BC_X12Encoder.h" |
45 | 45 |
46 CBC_DataMatrixWriter::CBC_DataMatrixWriter() {} | 46 CBC_DataMatrixWriter::CBC_DataMatrixWriter() {} |
47 CBC_DataMatrixWriter::~CBC_DataMatrixWriter() {} | 47 CBC_DataMatrixWriter::~CBC_DataMatrixWriter() {} |
48 FX_BOOL CBC_DataMatrixWriter::SetErrorCorrectionLevel(int32_t level) { | 48 FX_BOOL CBC_DataMatrixWriter::SetErrorCorrectionLevel(int32_t level) { |
49 m_iCorrectLevel = level; | 49 m_iCorrectLevel = level; |
50 return TRUE; | 50 return TRUE; |
51 } | 51 } |
52 uint8_t* CBC_DataMatrixWriter::Encode(const CFX_WideString& contents, | 52 uint8_t* CBC_DataMatrixWriter::Encode(const CFX_WideString& contents, |
53 int32_t& outWidth, | 53 int32_t& outWidth, |
54 int32_t& outHeight, | 54 int32_t& outHeight, |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 matrixX = 0; | 127 matrixX = 0; |
128 for (int32_t x = 0; x < symbolInfo->getSymbolWidth(e); x++) { | 128 for (int32_t x = 0; x < symbolInfo->getSymbolWidth(e); x++) { |
129 matrix->Set(matrixX, matrixY, TRUE); | 129 matrix->Set(matrixX, matrixY, TRUE); |
130 matrixX++; | 130 matrixX++; |
131 } | 131 } |
132 matrixY++; | 132 matrixY++; |
133 } | 133 } |
134 } | 134 } |
135 return matrix; | 135 return matrix; |
136 } | 136 } |
OLD | NEW |