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

Unified Diff: src/codec/SkCodecImageGenerator.cpp

Issue 1893663002: Add ability to default incoming image data as sRGB by default. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Change default to linear. Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codec/SkCodecImageGenerator.cpp
diff --git a/src/codec/SkCodecImageGenerator.cpp b/src/codec/SkCodecImageGenerator.cpp
index db13aaea2973f62445477f8fefdf42bef948d761..2548a006299f71efb612fbb78b8d2583ec89bffa 100644
--- a/src/codec/SkCodecImageGenerator.cpp
+++ b/src/codec/SkCodecImageGenerator.cpp
@@ -6,6 +6,7 @@
*/
#include "SkCodecImageGenerator.h"
+#include "SkPM4fPriv.h"
SkImageGenerator* SkCodecImageGenerator::NewFromEncodedCodec(SkData* data) {
SkCodec* codec = SkCodec::NewFromData(data);
@@ -25,9 +26,12 @@ static SkImageInfo fix_info(const SkCodec& codec) {
SkAlphaType alphaType = (kUnpremul_SkAlphaType == info.alphaType()) ? kPremul_SkAlphaType :
info.alphaType();
- // Crudely guess that the presence of a color space means sRGB.
- SkColorProfileType profileType = (codec.getColorSpace()) ? kSRGB_SkColorProfileType :
- kLinear_SkColorProfileType;
+ SkColorProfileType profileType = kLinear_SkColorProfileType;
+ // Crudely guess that the presence of a color space means sRGB, or obey the global sRGB
+ // selector.
+ if (gTreatSkColorAsSRGB || codec.getColorSpace()) {
+ profileType = kSRGB_SkColorProfileType;
+ }
return SkImageInfo::Make(info.width(), info.height(), info.colorType(), alphaType, profileType);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698