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 "core/src/fpdfapi/fpdf_render/render_int.h" | 7 #include "core/src/fpdfapi/fpdf_render/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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 } | 311 } |
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->GetPageObjectList()->size() == 1 && !m_bColored) { | 319 if (m_pForm->GetPageObjectList()->size() == 1 && !m_bColored) { |
320 auto& pPageObj = m_pForm->GetPageObjectList()->front(); | 320 auto& pPageObj = m_pForm->GetPageObjectList()->front(); |
321 if (pPageObj->m_Type == CPDF_PageObject::IMAGE) { | 321 if (pPageObj->IsImage()) { |
322 CPDF_ImageObject* pImage = static_cast<CPDF_ImageObject*>(pPageObj.get()); | 322 const CFX_DIBSource* pSource = |
323 m_ImageMatrix = pImage->m_Matrix; | 323 pPageObj->AsImage()->m_pImage->LoadDIBSource(); |
324 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource(); | |
325 if (pSource) { | 324 if (pSource) { |
326 m_pBitmap = pSource->Clone(); | 325 m_pBitmap = pSource->Clone(); |
327 delete pSource; | 326 delete pSource; |
328 } | 327 } |
329 delete m_pForm; | 328 delete m_pForm; |
330 m_pForm = NULL; | 329 m_pForm = NULL; |
331 return TRUE; | 330 return TRUE; |
332 } | 331 } |
333 } | 332 } |
334 return FALSE; | 333 return FALSE; |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 ProcessPath(&path, pObj2Device); | 781 ProcessPath(&path, pObj2Device); |
783 } | 782 } |
784 } | 783 } |
785 | 784 |
786 CFX_PathData* CPDF_Font::LoadGlyphPath(FX_DWORD charcode, int dest_width) { | 785 CFX_PathData* CPDF_Font::LoadGlyphPath(FX_DWORD charcode, int dest_width) { |
787 int glyph_index = GlyphFromCharCode(charcode); | 786 int glyph_index = GlyphFromCharCode(charcode); |
788 if (!m_Font.GetFace()) | 787 if (!m_Font.GetFace()) |
789 return nullptr; | 788 return nullptr; |
790 return m_Font.LoadGlyphPath(glyph_index, dest_width); | 789 return m_Font.LoadGlyphPath(glyph_index, dest_width); |
791 } | 790 } |
OLD | NEW |