| 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 "../../../include/fxge/fx_ge.h" |
| 8 #include "../../../include/fxcodec/fx_codec.h" | 8 #include "../../../include/fxcodec/fx_codec.h" |
| 9 #include "text_int.h" | 9 #include "text_int.h" |
| 10 struct PSGlyph { | 10 struct PSGlyph { |
| 11 CFX_Font* m_pFont; | 11 CFX_Font* m_pFont; |
| 12 FX_DWORD m_GlyphIndex; | 12 FX_DWORD m_GlyphIndex; |
| 13 FX_BOOL m_bGlyphAdjust; | 13 FX_BOOL m_bGlyphAdjust; |
| 14 FX_FLOAT m_AdjustMatrix[4]; | 14 FX_FLOAT m_AdjustMatrix[4]; |
| 15 }; | 15 }; |
| 16 class CPSFont : public CFX_Object | 16 class CPSFont |
| 17 { | 17 { |
| 18 public: | 18 public: |
| 19 PSGlyph m_Glyphs[256]; | 19 PSGlyph m_Glyphs[256]; |
| 20 int m_nGlyphs; | 20 int m_nGlyphs; |
| 21 }; | 21 }; |
| 22 CFX_PSRenderer::CFX_PSRenderer() | 22 CFX_PSRenderer::CFX_PSRenderer() |
| 23 { | 23 { |
| 24 m_pOutput = NULL; | 24 m_pOutput = NULL; |
| 25 m_bColorSet = m_bGraphStateSet = FALSE; | 25 m_bColorSet = m_bGraphStateSet = FALSE; |
| 26 m_bInited = FALSE; | 26 m_bInited = FALSE; |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 FX_LPBYTE dest_buf; | 648 FX_LPBYTE dest_buf; |
| 649 FX_DWORD dest_size; | 649 FX_DWORD dest_size; |
| 650 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule(); | 650 CCodec_ModuleMgr* pEncoders = CFX_GEModule::Get()->GetCodecModule(); |
| 651 if (pEncoders && pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf,
dest_size)) { | 651 if (pEncoders && pEncoders->GetBasicModule()->A85Encode(data, len, dest_buf,
dest_size)) { |
| 652 m_pOutput->OutputPS((FX_LPCSTR)dest_buf, dest_size); | 652 m_pOutput->OutputPS((FX_LPCSTR)dest_buf, dest_size); |
| 653 FX_Free(dest_buf); | 653 FX_Free(dest_buf); |
| 654 } else { | 654 } else { |
| 655 m_pOutput->OutputPS((FX_LPCSTR)data, len); | 655 m_pOutput->OutputPS((FX_LPCSTR)data, len); |
| 656 } | 656 } |
| 657 } | 657 } |
| OLD | NEW |