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 "render_int.h" | 7 #include "render_int.h" |
8 | 8 |
9 #include "core/include/fpdfapi/fpdf_pageobj.h" | 9 #include "core/include/fpdfapi/fpdf_pageobj.h" |
10 #include "core/include/fpdfapi/fpdf_render.h" | 10 #include "core/include/fpdfapi/fpdf_render.h" |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 pFont->m_pDocument->GetRenderData()->ReleaseCachedType3(pFont); | 312 pFont->m_pDocument->GetRenderData()->ReleaseCachedType3(pFont); |
313 pFont->m_pDocument->GetPageData()->ReleaseFont(pFont->GetFontDict()); | 313 pFont->m_pDocument->GetPageData()->ReleaseFont(pFont->GetFontDict()); |
314 } | 314 } |
315 FX_BOOL CPDF_Type3Char::LoadBitmap(CPDF_RenderContext* pContext) { | 315 FX_BOOL CPDF_Type3Char::LoadBitmap(CPDF_RenderContext* pContext) { |
316 if (m_pBitmap || !m_pForm) { | 316 if (m_pBitmap || !m_pForm) { |
317 return TRUE; | 317 return TRUE; |
318 } | 318 } |
319 if (m_pForm->CountObjects() == 1 && !m_bColored) { | 319 if (m_pForm->CountObjects() == 1 && !m_bColored) { |
320 CPDF_PageObject* pPageObj = | 320 CPDF_PageObject* pPageObj = |
321 m_pForm->GetObjectAt(m_pForm->GetFirstObjectPosition()); | 321 m_pForm->GetObjectAt(m_pForm->GetFirstObjectPosition()); |
322 if (pPageObj->m_Type == PDFPAGE_IMAGE) { | 322 if (pPageObj->m_Type == CPDF_PageObject::IMAGE) { |
323 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pPageObj; | 323 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pPageObj; |
324 m_ImageMatrix = pImage->m_Matrix; | 324 m_ImageMatrix = pImage->m_Matrix; |
325 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource(); | 325 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource(); |
326 if (pSource) { | 326 if (pSource) { |
327 m_pBitmap = pSource->Clone(); | 327 m_pBitmap = pSource->Clone(); |
328 delete pSource; | 328 delete pSource; |
329 } | 329 } |
330 delete m_pForm; | 330 delete m_pForm; |
331 m_pForm = NULL; | 331 m_pForm = NULL; |
332 return TRUE; | 332 return TRUE; |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 ProcessPath(&path, pObj2Device); | 782 ProcessPath(&path, pObj2Device); |
783 } | 783 } |
784 } | 784 } |
785 | 785 |
786 CFX_PathData* CPDF_Font::LoadGlyphPath(FX_DWORD charcode, int dest_width) { | 786 CFX_PathData* CPDF_Font::LoadGlyphPath(FX_DWORD charcode, int dest_width) { |
787 int glyph_index = GlyphFromCharCode(charcode); | 787 int glyph_index = GlyphFromCharCode(charcode); |
788 if (!m_Font.GetFace()) | 788 if (!m_Font.GetFace()) |
789 return nullptr; | 789 return nullptr; |
790 return m_Font.LoadGlyphPath(glyph_index, dest_width); | 790 return m_Font.LoadGlyphPath(glyph_index, dest_width); |
791 } | 791 } |
OLD | NEW |