Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(634)

Side by Side Diff: core/fpdfapi/fpdf_font/cpdf_type3char.cpp

Issue 2224623002: Add CPDF_ImageObject::GetImage(). (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: merge failure handlers Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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/fpdfapi/fpdf_font/cpdf_type3char.h" 7 #include "core/fpdfapi/fpdf_font/cpdf_type3char.h"
8 8
9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" 9 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h"
10 #include "core/fpdfapi/fpdf_page/include/cpdf_image.h" 10 #include "core/fpdfapi/fpdf_page/include/cpdf_image.h"
(...skipping 13 matching lines...) Expand all
24 24
25 if (m_pForm->GetPageObjectList()->size() != 1 || m_bColored) 25 if (m_pForm->GetPageObjectList()->size() != 1 || m_bColored)
26 return FALSE; 26 return FALSE;
27 27
28 auto& pPageObj = m_pForm->GetPageObjectList()->front(); 28 auto& pPageObj = m_pForm->GetPageObjectList()->front();
29 if (!pPageObj->IsImage()) 29 if (!pPageObj->IsImage())
30 return FALSE; 30 return FALSE;
31 31
32 m_ImageMatrix = pPageObj->AsImage()->m_Matrix; 32 m_ImageMatrix = pPageObj->AsImage()->m_Matrix;
33 std::unique_ptr<CFX_DIBSource> pSource( 33 std::unique_ptr<CFX_DIBSource> pSource(
34 pPageObj->AsImage()->m_pImage->LoadDIBSource()); 34 pPageObj->AsImage()->GetImage()->LoadDIBSource());
35 if (pSource) 35 if (pSource)
36 m_pBitmap.reset(pSource->Clone()); 36 m_pBitmap.reset(pSource->Clone());
37 m_pForm.reset(); 37 m_pForm.reset();
38 return TRUE; 38 return TRUE;
39 } 39 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.cpp ('k') | core/fpdfapi/fpdf_page/fpdf_page_parser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698