Flutter Engine
The Flutter Engine
|
Functions | |
SK_API bool | IsJpeg (const void *, size_t) |
SK_API std::unique_ptr< SkCodec > | Decode (std::unique_ptr< SkStream >, SkCodec::Result *, SkCodecs::DecodeContext=nullptr) |
SK_API std::unique_ptr< SkCodec > | Decode (sk_sp< SkData >, SkCodec::Result *, SkCodecs::DecodeContext=nullptr) |
constexpr SkCodecs::Decoder | Decoder () |
std::unique_ptr< SkCodec > SkJpegDecoder::Decode | ( | sk_sp< SkData > | data, |
SkCodec::Result * | outResult, | ||
SkCodecs::DecodeContext | = nullptr |
||
) |
Definition at line 944 of file SkJpegCodec.cpp.
std::unique_ptr< SkCodec > SkJpegDecoder::Decode | ( | std::unique_ptr< SkStream > | stream, |
SkCodec::Result * | outResult, | ||
SkCodecs::DecodeContext | = nullptr |
||
) |
Attempts to decode the given bytes as a JPEG.
If the bytes are not a JPEG, returns nullptr.
DecodeContext is ignored
Definition at line 934 of file SkJpegCodec.cpp.
|
inlineconstexpr |
Definition at line 38 of file SkJpegDecoder.h.
bool SkJpegDecoder::IsJpeg | ( | const void * | data, |
size_t | len | ||
) |
Returns true if this data claims to be a JPEG image.
Definition at line 930 of file SkJpegCodec.cpp.