| // Copyright 2016 The PDFium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| |
| #ifndef CORE_FXCODEC_JPEG_JPEGMODULE_H_ |
| #define CORE_FXCODEC_JPEG_JPEGMODULE_H_ |
| |
| #include <stddef.h> |
| #include <stdint.h> |
| |
| #include <memory> |
| #include <optional> |
| |
| #include "build/build_config.h" |
| #include "core/fxcrt/span.h" |
| |
| #if BUILDFLAG(IS_WIN) |
| #include "core/fxcrt/compiler_specific.h" |
| #include "core/fxcrt/retain_ptr.h" |
| #endif |
| |
| class CFX_DIBBase; |
| |
| namespace fxcodec { |
| |
| class ScanlineDecoder; |
| |
| class JpegModule { |
| public: |
| struct ImageInfo { |
| uint32_t width; |
| uint32_t height; |
| int num_components; |
| int bits_per_components; |
| bool color_transform; |
| }; |
| |
| // `scale_denom` requests that libjpeg decode the image at a reduced size of |
| // 1/`scale_denom` in each dimension. Must be one of 1, 2, 4, or 8 (libjpeg's |
| // supported power-of-two DCT scalings). The resulting decoder reports the |
| // scaled-down dimensions via GetWidth()/GetHeight(). |
| // |
| // `prefer_bgr_output` requests scanlines with the red and blue samples |
| // swapped, i.e. in B,G,R order. The request is honored only when the |
| // decode output would otherwise be plain 3-component RGB; whether it took |
| // effect is reported by ScanlineDecoder::ScanlinesAreBgr() on the result. |
| // libjpeg-turbo emits the swapped order at no cost (JCS_EXT_BGR), which |
| // lets a caller whose destination is BGR skip a per-pixel swap. |
| static std::unique_ptr<ScanlineDecoder> CreateDecoder( |
| pdfium::span<const uint8_t> src_span, |
| uint32_t width, |
| uint32_t height, |
| int nComps, |
| bool ColorTransform, |
| uint32_t scale_denom, |
| bool prefer_bgr_output); |
| |
| static std::optional<ImageInfo> LoadInfo( |
| pdfium::span<const uint8_t> src_span); |
| |
| #if BUILDFLAG(IS_WIN) |
| UNSAFE_BUFFER_USAGE static bool JpegEncode( |
| const RetainPtr<const CFX_DIBBase>& pSource, |
| uint8_t** dest_buf, |
| size_t* dest_size); |
| #endif // BUILDFLAG(IS_WIN) |
| |
| JpegModule() = delete; |
| JpegModule(const JpegModule&) = delete; |
| JpegModule& operator=(const JpegModule&) = delete; |
| }; |
| |
| } // namespace fxcodec |
| |
| using JpegModule = fxcodec::JpegModule; |
| |
| #endif // CORE_FXCODEC_JPEG_JPEGMODULE_H_ |