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 | 6 |
7 #include "xfa/src/fxbarcode/BC_Writer.h" | 7 #include "xfa/fxbarcode/BC_Writer.h" |
8 | 8 |
9 CBC_Writer::CBC_Writer() { | 9 CBC_Writer::CBC_Writer() { |
10 m_CharEncoding = 0; | 10 m_CharEncoding = 0; |
11 m_ModuleHeight = 1; | 11 m_ModuleHeight = 1; |
12 m_ModuleWidth = 1; | 12 m_ModuleWidth = 1; |
13 m_Height = 320; | 13 m_Height = 320; |
14 m_Width = 640; | 14 m_Width = 640; |
15 m_colorSpace = FXDIB_Argb; | 15 m_colorSpace = FXDIB_Argb; |
16 m_barColor = 0xff000000; | 16 m_barColor = 0xff000000; |
17 m_backgroundColor = 0xffffffff; | 17 m_backgroundColor = 0xffffffff; |
(...skipping 29 matching lines...) Expand all Loading... |
47 m_backgroundColor = backgroundColor; | 47 m_backgroundColor = backgroundColor; |
48 } | 48 } |
49 void CBC_Writer::SetBarcodeColor(FX_ARGB foregroundColor) { | 49 void CBC_Writer::SetBarcodeColor(FX_ARGB foregroundColor) { |
50 m_barColor = foregroundColor; | 50 m_barColor = foregroundColor; |
51 } | 51 } |
52 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(int32_t width, int32_t height) { | 52 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(int32_t width, int32_t height) { |
53 CFX_DIBitmap* pDIBitmap = new CFX_DIBitmap; | 53 CFX_DIBitmap* pDIBitmap = new CFX_DIBitmap; |
54 pDIBitmap->Create(width, height, m_colorSpace); | 54 pDIBitmap->Create(width, height, m_colorSpace); |
55 return pDIBitmap; | 55 return pDIBitmap; |
56 } | 56 } |
OLD | NEW |