| 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 "barcode.h" | 7 #include "barcode.h" |
| 8 #include "include/BC_Writer.h" | 8 #include "BC_Writer.h" |
| 9 CBC_Writer::CBC_Writer() | 9 CBC_Writer::CBC_Writer() |
| 10 { | 10 { |
| 11 m_CharEncoding = 0; | 11 m_CharEncoding = 0; |
| 12 m_ModuleHeight = 1; | 12 m_ModuleHeight = 1; |
| 13 m_ModuleWidth = 1; | 13 m_ModuleWidth = 1; |
| 14 m_Height = 320; | 14 m_Height = 320; |
| 15 m_Width = 640; | 15 m_Width = 640; |
| 16 m_colorSpace = FXDIB_Argb; | 16 m_colorSpace = FXDIB_Argb; |
| 17 m_barColor = 0xff000000; | 17 m_barColor = 0xff000000; |
| 18 m_backgroundColor = 0xffffffff; | 18 m_backgroundColor = 0xffffffff; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 } | 61 } |
| 62 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(FX_INT32 width, FX_INT32 height) | 62 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(FX_INT32 width, FX_INT32 height) |
| 63 { | 63 { |
| 64 CFX_DIBitmap *pDIBitmap = NULL; | 64 CFX_DIBitmap *pDIBitmap = NULL; |
| 65 pDIBitmap = FX_NEW CFX_DIBitmap; | 65 pDIBitmap = FX_NEW CFX_DIBitmap; |
| 66 if(pDIBitmap != NULL) { | 66 if(pDIBitmap != NULL) { |
| 67 pDIBitmap->Create(width, height, m_colorSpace); | 67 pDIBitmap->Create(width, height, m_colorSpace); |
| 68 } | 68 } |
| 69 return pDIBitmap; | 69 return pDIBitmap; |
| 70 } | 70 } |
| OLD | NEW |