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 "../../../include/fxge/fx_ge.h" | 7 #include "core/include/fxge/fx_ge.h" |
8 #include "../../../include/fxcodec/fx_codec.h" | 8 #include "core/include/fxcodec/fx_codec.h" |
9 #include "text_int.h" | 9 #include "text_int.h" |
| 10 |
10 struct PSGlyph { | 11 struct PSGlyph { |
11 CFX_Font* m_pFont; | 12 CFX_Font* m_pFont; |
12 FX_DWORD m_GlyphIndex; | 13 FX_DWORD m_GlyphIndex; |
13 FX_BOOL m_bGlyphAdjust; | 14 FX_BOOL m_bGlyphAdjust; |
14 FX_FLOAT m_AdjustMatrix[4]; | 15 FX_FLOAT m_AdjustMatrix[4]; |
15 }; | 16 }; |
16 class CPSFont { | 17 class CPSFont { |
17 public: | 18 public: |
18 PSGlyph m_Glyphs[256]; | 19 PSGlyph m_Glyphs[256]; |
19 int m_nGlyphs; | 20 int m_nGlyphs; |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 FX_DWORD dest_size; | 708 FX_DWORD dest_size; |
708 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule(); | 709 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule(); |
709 if (pEncoders && | 710 if (pEncoders && |
710 pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf, dest_size)) { | 711 pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf, dest_size)) { |
711 m_pOutput->OutputPS((const FX_CHAR*)dest_buf, dest_size); | 712 m_pOutput->OutputPS((const FX_CHAR*)dest_buf, dest_size); |
712 FX_Free(dest_buf); | 713 FX_Free(dest_buf); |
713 } else { | 714 } else { |
714 m_pOutput->OutputPS((const FX_CHAR*)data, len); | 715 m_pOutput->OutputPS((const FX_CHAR*)data, len); |
715 } | 716 } |
716 } | 717 } |
OLD | NEW |