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/fpdfapi/fpdf_page/include/cpdf_page.h" |
7 #include "core/fpdfapi/fpdf_page/pageint.h" | 8 #include "core/fpdfapi/fpdf_page/pageint.h" |
8 #include "core/fpdfapi/fpdf_parser/cpdf_boolean.h" | 9 #include "core/fpdfapi/fpdf_parser/cpdf_boolean.h" |
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" | 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" |
13 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" | 14 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" |
14 #include "core/fpdfapi/fpdf_render/render_int.h" | 15 #include "core/fpdfapi/fpdf_render/render_int.h" |
15 #include "core/fpdfapi/include/cpdf_modulemgr.h" | 16 #include "core/fpdfapi/include/cpdf_modulemgr.h" |
16 #include "core/include/fpdfapi/fpdf_page.h" | |
17 #include "core/include/fxcodec/fx_codec.h" | 17 #include "core/include/fxcodec/fx_codec.h" |
18 | 18 |
19 CPDF_Dictionary* CPDF_Image::InitJPEG(uint8_t* pData, FX_DWORD size) { | 19 CPDF_Dictionary* CPDF_Image::InitJPEG(uint8_t* pData, FX_DWORD size) { |
20 int32_t width; | 20 int32_t width; |
21 int32_t height; | 21 int32_t height; |
22 int32_t num_comps; | 22 int32_t num_comps; |
23 int32_t bits; | 23 int32_t bits; |
24 FX_BOOL color_trans; | 24 FX_BOOL color_trans; |
25 if (!CPDF_ModuleMgr::Get()->GetJpegModule()->LoadInfo( | 25 if (!CPDF_ModuleMgr::Get()->GetJpegModule()->LoadInfo( |
26 pData, size, width, height, num_comps, bits, color_trans)) { | 26 pData, size, width, height, num_comps, bits, color_trans)) { |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 m_pStream->InitStreamFromFile(pFileRead, pDict); | 382 m_pStream->InitStreamFromFile(pFileRead, pDict); |
383 } | 383 } |
384 m_bIsMask = pBitmap->IsAlphaMask(); | 384 m_bIsMask = pBitmap->IsAlphaMask(); |
385 m_Width = BitmapWidth; | 385 m_Width = BitmapWidth; |
386 m_Height = BitmapHeight; | 386 m_Height = BitmapHeight; |
387 FX_Free(dest_buf); | 387 FX_Free(dest_buf); |
388 } | 388 } |
389 void CPDF_Image::ResetCache(CPDF_Page* pPage, const CFX_DIBitmap* pBitmap) { | 389 void CPDF_Image::ResetCache(CPDF_Page* pPage, const CFX_DIBitmap* pBitmap) { |
390 pPage->GetRenderCache()->ResetBitmap(m_pStream, pBitmap); | 390 pPage->GetRenderCache()->ResetBitmap(m_pStream, pBitmap); |
391 } | 391 } |
OLD | NEW |