Make SkAndroidCodec (optionally) respect origin

Bug: b/63909536

ImageDecoder will respect the origin, but BitmapFactory will maintain
its current behavior of not respecting it. Add an option to respect it.

In addition, add support for reading the EXIF data from a WEBP. This
seems to be an uncommon use case, but is occasionally used when
converting from a JPEG. Add 8 WEBPs, all converted (with cwebp) from
their analogous JPEG files already checked in.

Change-Id: I38afca58c86fa99ee9ab7d1dc83aaa4f23132c11
Reviewed-on: https://skia-review.googlesource.com/95300
Reviewed-by: Derek Sollenberger <djsollen@google.com>
Commit-Queue: Leon Scroggins <scroggo@google.com>
This commit is contained in:
Leon Scroggins III 2018-01-26 15:48:26 -05:00 committed by Skia Commit-Bot
parent 323df5720c
commit da3e9ad894
21 changed files with 215 additions and 52 deletions

View File

@ -19,10 +19,31 @@
*/ */
class SK_API SkAndroidCodec : SkNoncopyable { class SK_API SkAndroidCodec : SkNoncopyable {
public: public:
enum class ExifOrientationBehavior {
/**
* Ignore any exif orientation markers in the data.
*
* getInfo's width and height will match the header of the image, and
* no processing will be done to match the marker.
*/
kIgnore,
/**
* Respect the exif orientation marker.
*
* getInfo's width and height will represent what they should be after
* applying the orientation. For example, if the marker specifies a
* rotation by 90 degrees, they will be swapped relative to the header.
* getAndroidPixels will apply the orientation as well.
*/
kRespect,
};
/** /**
* Pass ownership of an SkCodec to a newly-created SkAndroidCodec. * Pass ownership of an SkCodec to a newly-created SkAndroidCodec.
*/ */
static std::unique_ptr<SkAndroidCodec> MakeFromCodec(std::unique_ptr<SkCodec>); static std::unique_ptr<SkAndroidCodec> MakeFromCodec(std::unique_ptr<SkCodec>,
ExifOrientationBehavior = ExifOrientationBehavior::kIgnore);
/** /**
* If this stream represents an encoded image that we know how to decode, * If this stream represents an encoded image that we know how to decode,
@ -33,6 +54,8 @@ public:
* *
* If NULL is returned, the stream is deleted immediately. Otherwise, the * If NULL is returned, the stream is deleted immediately. Otherwise, the
* SkCodec takes ownership of it, and will delete it when done with it. * SkCodec takes ownership of it, and will delete it when done with it.
*
* ExifOrientationBehavior is set to kIgnore.
*/ */
static std::unique_ptr<SkAndroidCodec> MakeFromStream(std::unique_ptr<SkStream>, static std::unique_ptr<SkAndroidCodec> MakeFromStream(std::unique_ptr<SkStream>,
SkPngChunkReader* = nullptr); SkPngChunkReader* = nullptr);
@ -43,6 +66,8 @@ public:
* *
* The SkPngChunkReader handles unknown chunks in PNGs. * The SkPngChunkReader handles unknown chunks in PNGs.
* See SkCodec.h for more details. * See SkCodec.h for more details.
*
* ExifOrientationBehavior is set to kIgnore.
*/ */
static std::unique_ptr<SkAndroidCodec> MakeFromData(sk_sp<SkData>, SkPngChunkReader* = nullptr); static std::unique_ptr<SkAndroidCodec> MakeFromData(sk_sp<SkData>, SkPngChunkReader* = nullptr);
@ -245,8 +270,7 @@ public:
SkCodec* codec() const { return fCodec.get(); } SkCodec* codec() const { return fCodec.get(); }
protected: protected:
SkAndroidCodec(SkCodec*, ExifOrientationBehavior = ExifOrientationBehavior::kIgnore);
SkAndroidCodec(SkCodec*);
virtual SkISize onGetSampledDimensions(int sampleSize) const = 0; virtual SkISize onGetSampledDimensions(int sampleSize) const = 0;
@ -256,11 +280,8 @@ protected:
size_t rowBytes, const AndroidOptions& options) = 0; size_t rowBytes, const AndroidOptions& options) = 0;
private: private:
const SkImageInfo fInfo;
// This will always be a reference to the info that is contained by the const ExifOrientationBehavior fOrientationBehavior;
// embedded SkCodec. std::unique_ptr<SkCodec> fCodec;
const SkImageInfo& fInfo;
std::unique_ptr<SkCodec> fCodec;
}; };
#endif // SkAndroidCodec_DEFINED #endif // SkAndroidCodec_DEFINED

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -9,6 +9,8 @@
#include "SkCodec.h" #include "SkCodec.h"
#include "SkCodecPriv.h" #include "SkCodecPriv.h"
#include "SkMakeUnique.h" #include "SkMakeUnique.h"
#include "SkPixmap.h"
#include "SkPixmapPriv.h"
#include "SkRawAdapterCodec.h" #include "SkRawAdapterCodec.h"
#include "SkSampledCodec.h" #include "SkSampledCodec.h"
#include "SkWebpAdapterCodec.h" #include "SkWebpAdapterCodec.h"
@ -57,19 +59,32 @@ static bool is_wide_gamut(const SkColorSpace* colorSpace) {
return false; return false;
} }
SkAndroidCodec::SkAndroidCodec(SkCodec* codec) static inline SkImageInfo adjust_info(SkCodec* codec,
: fInfo(codec->getInfo()) SkAndroidCodec::ExifOrientationBehavior orientationBehavior) {
auto info = codec->getInfo();
if (orientationBehavior == SkAndroidCodec::ExifOrientationBehavior::kIgnore
|| !SkPixmapPriv::ShouldSwapWidthHeight(codec->getOrigin())) {
return info;
}
return SkPixmapPriv::SwapWidthHeight(info);
}
SkAndroidCodec::SkAndroidCodec(SkCodec* codec, ExifOrientationBehavior orientationBehavior)
: fInfo(adjust_info(codec, orientationBehavior))
, fOrientationBehavior(orientationBehavior)
, fCodec(codec) , fCodec(codec)
{} {}
SkAndroidCodec::~SkAndroidCodec() {} SkAndroidCodec::~SkAndroidCodec() {}
std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromStream(std::unique_ptr<SkStream> stream, SkPngChunkReader* chunkReader) { std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromStream(std::unique_ptr<SkStream> stream,
SkPngChunkReader* chunkReader) {
auto codec = SkCodec::MakeFromStream(std::move(stream), nullptr, chunkReader); auto codec = SkCodec::MakeFromStream(std::move(stream), nullptr, chunkReader);
return MakeFromCodec(std::move(codec)); return MakeFromCodec(std::move(codec));
} }
std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromCodec(std::unique_ptr<SkCodec> codec) { std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromCodec(std::unique_ptr<SkCodec> codec,
ExifOrientationBehavior orientationBehavior) {
if (nullptr == codec) { if (nullptr == codec) {
return nullptr; return nullptr;
} }
@ -88,14 +103,16 @@ std::unique_ptr<SkAndroidCodec> SkAndroidCodec::MakeFromCodec(std::unique_ptr<Sk
#ifdef SK_HAS_HEIF_LIBRARY #ifdef SK_HAS_HEIF_LIBRARY
case SkEncodedImageFormat::kHEIF: case SkEncodedImageFormat::kHEIF:
#endif #endif
return skstd::make_unique<SkSampledCodec>(codec.release()); return skstd::make_unique<SkSampledCodec>(codec.release(), orientationBehavior);
#ifdef SK_HAS_WEBP_LIBRARY #ifdef SK_HAS_WEBP_LIBRARY
case SkEncodedImageFormat::kWEBP: case SkEncodedImageFormat::kWEBP:
return skstd::make_unique<SkWebpAdapterCodec>((SkWebpCodec*) codec.release()); return skstd::make_unique<SkWebpAdapterCodec>((SkWebpCodec*) codec.release(),
orientationBehavior);
#endif #endif
#ifdef SK_CODEC_DECODES_RAW #ifdef SK_CODEC_DECODES_RAW
case SkEncodedImageFormat::kDNG: case SkEncodedImageFormat::kDNG:
return skstd::make_unique<SkRawAdapterCodec>((SkRawCodec*)codec.release()); return skstd::make_unique<SkRawAdapterCodec>((SkRawCodec*)codec.release(),
orientationBehavior);
#endif #endif
default: default:
return nullptr; return nullptr;
@ -325,24 +342,43 @@ SkISize SkAndroidCodec::getSampledSubsetDimensions(int sampleSize, const SkIRect
get_scaled_dimension(subset.height(), sampleSize)}; get_scaled_dimension(subset.height(), sampleSize)};
} }
SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels, static bool acceptable_result(SkCodec::Result result) {
size_t rowBytes, const AndroidOptions* options) { switch (result) {
if (!pixels) { // These results mean a partial or complete image. They should be considered
// a success by SkPixmapPriv.
case SkCodec::kSuccess:
case SkCodec::kIncompleteInput:
case SkCodec::kErrorInInput:
return true;
default:
return false;
}
}
SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& requestInfo,
void* requestPixels, size_t requestRowBytes, const AndroidOptions* options) {
if (!requestPixels) {
return SkCodec::kInvalidParameters; return SkCodec::kInvalidParameters;
} }
if (rowBytes < info.minRowBytes()) { if (requestRowBytes < requestInfo.minRowBytes()) {
return SkCodec::kInvalidParameters; return SkCodec::kInvalidParameters;
} }
SkImageInfo adjustedInfo = fInfo;
if (ExifOrientationBehavior::kRespect == fOrientationBehavior
&& SkPixmapPriv::ShouldSwapWidthHeight(fCodec->getOrigin())) {
adjustedInfo = SkPixmapPriv::SwapWidthHeight(adjustedInfo);
}
AndroidOptions defaultOptions; AndroidOptions defaultOptions;
if (!options) { if (!options) {
options = &defaultOptions; options = &defaultOptions;
} else if (options->fSubset) { } else if (options->fSubset) {
if (!is_valid_subset(*options->fSubset, fInfo.dimensions())) { if (!is_valid_subset(*options->fSubset, adjustedInfo.dimensions())) {
return SkCodec::kInvalidParameters; return SkCodec::kInvalidParameters;
} }
if (SkIRect::MakeSize(fInfo.dimensions()) == *options->fSubset) { if (SkIRect::MakeSize(adjustedInfo.dimensions()) == *options->fSubset) {
// The caller wants the whole thing, rather than a subset. Modify // The caller wants the whole thing, rather than a subset. Modify
// the AndroidOptions passed to onGetAndroidPixels to not specify // the AndroidOptions passed to onGetAndroidPixels to not specify
// a subset. // a subset.
@ -352,7 +388,27 @@ SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void*
} }
} }
return this->onGetAndroidPixels(info, pixels, rowBytes, *options); if (ExifOrientationBehavior::kIgnore == fOrientationBehavior) {
return this->onGetAndroidPixels(requestInfo, requestPixels, requestRowBytes, *options);
}
SkCodec::Result result;
auto decode = [this, options, &result](const SkPixmap& pm) {
result = this->onGetAndroidPixels(pm.info(), pm.writable_addr(), pm.rowBytes(), *options);
return acceptable_result(result);
};
SkPixmap dst(requestInfo, requestPixels, requestRowBytes);
if (SkPixmapPriv::Orient(dst, fCodec->getOrigin(), decode)) {
return result;
}
// Orient returned false. If onGetAndroidPixels succeeded, then Orient failed internally.
if (acceptable_result(result)) {
return SkCodec::kInternalError;
}
return result;
} }
SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels, SkCodec::Result SkAndroidCodec::getAndroidPixels(const SkImageInfo& info, void* pixels,

View File

@ -13,6 +13,7 @@
#include "SkColorSpaceXformPriv.h" #include "SkColorSpaceXformPriv.h"
#include "SkColorTable.h" #include "SkColorTable.h"
#include "SkEncodedInfo.h" #include "SkEncodedInfo.h"
#include "SkEncodedOrigin.h"
#include "SkImageInfo.h" #include "SkImageInfo.h"
#include "SkTypes.h" #include "SkTypes.h"
@ -295,4 +296,6 @@ static inline SkAlphaType select_xform_alpha(SkAlphaType dstAlphaType, SkAlphaTy
return (kOpaque_SkAlphaType == srcAlphaType) ? kOpaque_SkAlphaType : dstAlphaType; return (kOpaque_SkAlphaType == srcAlphaType) ? kOpaque_SkAlphaType : dstAlphaType;
} }
bool is_orientation_marker(const uint8_t* data, size_t data_length, SkEncodedOrigin* orientation);
#endif // SkCodecPriv_DEFINED #endif // SkCodecPriv_DEFINED

View File

@ -49,32 +49,36 @@ static bool is_orientation_marker(jpeg_marker_struct* marker, SkEncodedOrigin* o
return false; return false;
} }
const uint8_t* data = marker->data;
constexpr uint8_t kExifSig[] { 'E', 'x', 'i', 'f', '\0' }; constexpr uint8_t kExifSig[] { 'E', 'x', 'i', 'f', '\0' };
if (memcmp(data, kExifSig, sizeof(kExifSig))) { if (memcmp(marker->data, kExifSig, sizeof(kExifSig))) {
return false; return false;
} }
// Account for 'E', 'x', 'i', 'f', '\0', '<fill byte>'.
constexpr size_t kOffset = 6;
return is_orientation_marker(marker->data + kOffset, marker->data_length - kOffset,
orientation);
}
bool is_orientation_marker(const uint8_t* data, size_t data_length, SkEncodedOrigin* orientation) {
bool littleEndian; bool littleEndian;
if (!is_valid_endian_marker(data + 6, &littleEndian)) { if (!is_valid_endian_marker(data, &littleEndian)) {
return false; return false;
} }
// Get the offset from the start of the marker. // Get the offset from the start of the marker.
// Account for 'E', 'x', 'i', 'f', '\0', '<fill byte>'.
// Though this only reads four bytes, use a larger int in case it overflows. // Though this only reads four bytes, use a larger int in case it overflows.
uint64_t offset = get_endian_int(data + 10, littleEndian); uint64_t offset = get_endian_int(data + 4, littleEndian);
offset += sizeof(kExifSig) + 1;
// Require that the marker is at least large enough to contain the number of entries. // Require that the marker is at least large enough to contain the number of entries.
if (marker->data_length < offset + 2) { if (data_length < offset + 2) {
return false; return false;
} }
uint32_t numEntries = get_endian_short(data + offset, littleEndian); uint32_t numEntries = get_endian_short(data + offset, littleEndian);
// Tag (2 bytes), Datatype (2 bytes), Number of elements (4 bytes), Data (4 bytes) // Tag (2 bytes), Datatype (2 bytes), Number of elements (4 bytes), Data (4 bytes)
const uint32_t kEntrySize = 12; const uint32_t kEntrySize = 12;
const auto max = SkTo<uint32_t>((marker->data_length - offset - 2) / kEntrySize); const auto max = SkTo<uint32_t>((data_length - offset - 2) / kEntrySize);
numEntries = SkTMin(numEntries, max); numEntries = SkTMin(numEntries, max);
// Advance the data to the start of the entries. // Advance the data to the start of the entries.

View File

@ -9,8 +9,8 @@
#include "SkCodecPriv.h" #include "SkCodecPriv.h"
#include "SkRawAdapterCodec.h" #include "SkRawAdapterCodec.h"
SkRawAdapterCodec::SkRawAdapterCodec(SkRawCodec* codec) SkRawAdapterCodec::SkRawAdapterCodec(SkRawCodec* codec, ExifOrientationBehavior behavior)
: INHERITED(codec) : INHERITED(codec, behavior)
{} {}
SkISize SkRawAdapterCodec::onGetSampledDimensions(int sampleSize) const { SkISize SkRawAdapterCodec::onGetSampledDimensions(int sampleSize) const {

View File

@ -21,8 +21,7 @@
*/ */
class SkRawAdapterCodec : public SkAndroidCodec { class SkRawAdapterCodec : public SkAndroidCodec {
public: public:
explicit SkRawAdapterCodec(SkRawCodec*, ExifOrientationBehavior);
explicit SkRawAdapterCodec(SkRawCodec*);
~SkRawAdapterCodec() override {} ~SkRawAdapterCodec() override {}

View File

@ -12,8 +12,8 @@
#include "SkSampler.h" #include "SkSampler.h"
#include "SkTemplates.h" #include "SkTemplates.h"
SkSampledCodec::SkSampledCodec(SkCodec* codec) SkSampledCodec::SkSampledCodec(SkCodec* codec, ExifOrientationBehavior behavior)
: INHERITED(codec) : INHERITED(codec, behavior)
{} {}
SkISize SkSampledCodec::accountForNativeScaling(int* sampleSizePtr, int* nativeSampleSize) const { SkISize SkSampledCodec::accountForNativeScaling(int* sampleSizePtr, int* nativeSampleSize) const {

View File

@ -16,8 +16,7 @@
*/ */
class SkSampledCodec : public SkAndroidCodec { class SkSampledCodec : public SkAndroidCodec {
public: public:
explicit SkSampledCodec(SkCodec*, ExifOrientationBehavior);
explicit SkSampledCodec(SkCodec*);
~SkSampledCodec() override {} ~SkSampledCodec() override {}

View File

@ -9,8 +9,8 @@
#include "SkCodecPriv.h" #include "SkCodecPriv.h"
#include "SkWebpAdapterCodec.h" #include "SkWebpAdapterCodec.h"
SkWebpAdapterCodec::SkWebpAdapterCodec(SkWebpCodec* codec) SkWebpAdapterCodec::SkWebpAdapterCodec(SkWebpCodec* codec, ExifOrientationBehavior behavior)
: INHERITED(codec) : INHERITED(codec, behavior)
{} {}
SkISize SkWebpAdapterCodec::onGetSampledDimensions(int sampleSize) const { SkISize SkWebpAdapterCodec::onGetSampledDimensions(int sampleSize) const {

View File

@ -17,7 +17,7 @@
class SkWebpAdapterCodec : public SkAndroidCodec { class SkWebpAdapterCodec : public SkAndroidCodec {
public: public:
explicit SkWebpAdapterCodec(SkWebpCodec*); explicit SkWebpAdapterCodec(SkWebpCodec*, ExifOrientationBehavior);
~SkWebpAdapterCodec() override {} ~SkWebpAdapterCodec() override {}

View File

@ -87,14 +87,25 @@ std::unique_ptr<SkCodec> SkWebpCodec::MakeFromStream(std::unique_ptr<SkStream> s
} }
} }
WebPChunkIterator chunkIterator;
SkAutoTCallVProc<WebPChunkIterator, WebPDemuxReleaseChunkIterator> autoCI(&chunkIterator);
sk_sp<SkColorSpace> colorSpace = nullptr; sk_sp<SkColorSpace> colorSpace = nullptr;
if (WebPDemuxGetChunk(demux, "ICCP", 1, &chunkIterator)) { {
colorSpace = SkColorSpace::MakeICC(chunkIterator.chunk.bytes, chunkIterator.chunk.size); WebPChunkIterator chunkIterator;
SkAutoTCallVProc<WebPChunkIterator, WebPDemuxReleaseChunkIterator> autoCI(&chunkIterator);
if (WebPDemuxGetChunk(demux, "ICCP", 1, &chunkIterator)) {
colorSpace = SkColorSpace::MakeICC(chunkIterator.chunk.bytes, chunkIterator.chunk.size);
}
if (!colorSpace || colorSpace->type() != SkColorSpace::kRGB_Type) {
colorSpace = SkColorSpace::MakeSRGB();
}
} }
if (!colorSpace || colorSpace->type() != SkColorSpace::kRGB_Type) {
colorSpace = SkColorSpace::MakeSRGB(); SkEncodedOrigin origin = kDefault_SkEncodedOrigin;
{
WebPChunkIterator chunkIterator;
SkAutoTCallVProc<WebPChunkIterator, WebPDemuxReleaseChunkIterator> autoCI(&chunkIterator);
if (WebPDemuxGetChunk(demux, "EXIF", 1, &chunkIterator)) {
is_orientation_marker(chunkIterator.chunk.bytes, chunkIterator.chunk.size, &origin);
}
} }
// Get the first frame and its "features" to determine the color and alpha types. // Get the first frame and its "features" to determine the color and alpha types.
@ -156,10 +167,12 @@ std::unique_ptr<SkCodec> SkWebpCodec::MakeFromStream(std::unique_ptr<SkStream> s
return nullptr; return nullptr;
} }
*result = kSuccess; *result = kSuccess;
SkEncodedInfo info = SkEncodedInfo::Make(color, alpha, 8); SkEncodedInfo info = SkEncodedInfo::Make(color, alpha, 8);
return std::unique_ptr<SkCodec>(new SkWebpCodec(width, height, info, std::move(colorSpace), return std::unique_ptr<SkCodec>(new SkWebpCodec(width, height, info, std::move(colorSpace),
std::move(stream), demux.release(), std::move(data))); std::move(stream), demux.release(), std::move(data),
origin));
} }
SkISize SkWebpCodec::onGetScaledDimensions(float desiredScale) const { SkISize SkWebpCodec::onGetScaledDimensions(float desiredScale) const {
@ -646,9 +659,9 @@ SkCodec::Result SkWebpCodec::onGetPixels(const SkImageInfo& dstInfo, void* dst,
SkWebpCodec::SkWebpCodec(int width, int height, const SkEncodedInfo& info, SkWebpCodec::SkWebpCodec(int width, int height, const SkEncodedInfo& info,
sk_sp<SkColorSpace> colorSpace, std::unique_ptr<SkStream> stream, sk_sp<SkColorSpace> colorSpace, std::unique_ptr<SkStream> stream,
WebPDemuxer* demux, sk_sp<SkData> data) WebPDemuxer* demux, sk_sp<SkData> data, SkEncodedOrigin origin)
: INHERITED(width, height, info, SkColorSpaceXform::kBGRA_8888_ColorFormat, std::move(stream), : INHERITED(width, height, info, SkColorSpaceXform::kBGRA_8888_ColorFormat, std::move(stream),
std::move(colorSpace)) std::move(colorSpace), origin)
, fDemux(demux) , fDemux(demux)
, fData(std::move(data)) , fData(std::move(data))
, fFailed(false) , fFailed(false)

View File

@ -48,7 +48,7 @@ protected:
private: private:
SkWebpCodec(int width, int height, const SkEncodedInfo&, sk_sp<SkColorSpace>, SkWebpCodec(int width, int height, const SkEncodedInfo&, sk_sp<SkColorSpace>,
std::unique_ptr<SkStream>, WebPDemuxer*, sk_sp<SkData>); std::unique_ptr<SkStream>, WebPDemuxer*, sk_sp<SkData>, SkEncodedOrigin);
SkAutoTCallVProc<WebPDemuxer, WebPDemuxDelete> fDemux; SkAutoTCallVProc<WebPDemuxer, WebPDemuxDelete> fDemux;

View File

@ -7,7 +7,9 @@
#include "SkAndroidCodec.h" #include "SkAndroidCodec.h"
#include "SkCodec.h" #include "SkCodec.h"
#include "SkCodecImageGenerator.h"
#include "SkEncodedImageFormat.h" #include "SkEncodedImageFormat.h"
#include "SkPixmapPriv.h"
#include "Resources.h" #include "Resources.h"
#include "Test.h" #include "Test.h"
@ -117,3 +119,69 @@ DEF_TEST(AndroidCodec_computeSampleSize, r) {
} }
} }
} }
DEF_TEST(AndroidCodec_orientation, r) {
if (GetResourcePath().isEmpty()) {
return;
}
for (const char* ext : { "jpg", "webp" })
for (char i = '1'; i <= '8'; ++i) {
SkString path = SkStringPrintf("images/orientation/%c.%s", i, ext);
auto data = GetResourceAsData(path.c_str());
auto gen = SkCodecImageGenerator::MakeFromEncodedCodec(data);
if (!gen) {
ERRORF(r, "failed to decode %s", path.c_str());
return;
}
// Dimensions after adjusting for the origin.
const SkISize expectedDims = { 100, 80 };
// SkCodecImageGenerator automatically adjusts for the origin.
REPORTER_ASSERT(r, gen->getInfo().dimensions() == expectedDims);
auto androidCodec = SkAndroidCodec::MakeFromCodec(SkCodec::MakeFromData(data));
if (!androidCodec) {
ERRORF(r, "failed to decode %s", path.c_str());
return;
}
// SkAndroidCodec does not adjust for the origin by default. Dimensions may be reversed.
if (SkPixmapPriv::ShouldSwapWidthHeight(androidCodec->codec()->getOrigin())) {
auto swappedDims = SkPixmapPriv::SwapWidthHeight(androidCodec->getInfo()).dimensions();
REPORTER_ASSERT(r, expectedDims == swappedDims);
} else {
REPORTER_ASSERT(r, expectedDims == androidCodec->getInfo().dimensions());
}
// Passing kRespect adjusts for the origin.
androidCodec = SkAndroidCodec::MakeFromCodec(SkCodec::MakeFromData(std::move(data)),
SkAndroidCodec::ExifOrientationBehavior::kRespect);
auto info = androidCodec->getInfo();
REPORTER_ASSERT(r, info.dimensions() == expectedDims);
SkBitmap fromGenerator;
fromGenerator.allocPixels(info);
REPORTER_ASSERT(r, gen->getPixels(info, fromGenerator.getPixels(),
fromGenerator.rowBytes()));
SkBitmap fromAndroidCodec;
fromAndroidCodec.allocPixels(info);
auto result = androidCodec->getPixels(info, fromAndroidCodec.getPixels(),
fromAndroidCodec.rowBytes());
REPORTER_ASSERT(r, result == SkCodec::kSuccess);
for (int i = 0; i < info.width(); ++i)
for (int j = 0; j < info.height(); ++j) {
SkColor c1 = *fromGenerator .getAddr32(i, j);
SkColor c2 = *fromAndroidCodec.getAddr32(i, j);
if (c1 != c2) {
ERRORF(r, "Bitmaps for %s do not match starting at position %i, %i\n"
"\tfromGenerator: %x\tfromAndroidCodec: %x", path.c_str(), i, j,
c1, c2);
return;
}
}
}
}