blob: d915c09255f345abe86d419153ba96c7a52360a2 [file] [log] [blame]
reed@google.com3443fd82013-11-13 19:09:13 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkImageInfo_DEFINED
9#define SkImageInfo_DEFINED
10
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000011#include "SkMath.h"
halcanaryf622a6c2014-10-24 12:54:53 -070012#include "SkRect.h"
commit-bot@chromium.org32678d92014-01-15 02:38:22 +000013#include "SkSize.h"
reed@google.com3443fd82013-11-13 19:09:13 +000014
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000015class SkReadBuffer;
halcanaryf622a6c2014-10-24 12:54:53 -070016class SkWriteBuffer;
reed@google.com9230ea22013-12-09 22:01:03 +000017
reed@google.com3443fd82013-11-13 19:09:13 +000018/**
19 * Describes how to interpret the alpha compoent of a pixel.
20 */
21enum SkAlphaType {
reed44977482015-02-27 10:23:00 -080022 kUnknown_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000023
reed@google.com3443fd82013-11-13 19:09:13 +000024 /**
25 * All pixels are stored as opaque. This differs slightly from kIgnore in
26 * that kOpaque has correct "opaque" values stored in the pixels, while
27 * kIgnore may not, but in both cases the caller should treat the pixels
28 * as opaque.
29 */
30 kOpaque_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000031
reed@google.com3443fd82013-11-13 19:09:13 +000032 /**
33 * All pixels have their alpha premultiplied in their color components.
34 * This is the natural format for the rendering target pixels.
35 */
36 kPremul_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000037
reed@google.com3443fd82013-11-13 19:09:13 +000038 /**
39 * All pixels have their color components stored without any regard to the
40 * alpha. e.g. this is the default configuration for PNG images.
41 *
42 * This alpha-type is ONLY supported for input images. Rendering cannot
43 * generate this on output.
44 */
45 kUnpremul_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000046
reed@google.com3443fd82013-11-13 19:09:13 +000047 kLastEnum_SkAlphaType = kUnpremul_SkAlphaType
48};
49
50static inline bool SkAlphaTypeIsOpaque(SkAlphaType at) {
reed44977482015-02-27 10:23:00 -080051 return kOpaque_SkAlphaType == at;
reed@google.com3443fd82013-11-13 19:09:13 +000052}
53
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000054static inline bool SkAlphaTypeIsValid(unsigned value) {
55 return value <= kLastEnum_SkAlphaType;
56}
57
reed@google.com3443fd82013-11-13 19:09:13 +000058///////////////////////////////////////////////////////////////////////////////
59
60/**
61 * Describes how to interpret the components of a pixel.
reed6c6ddb82014-06-30 12:44:03 -070062 *
63 * kN32_SkColorType is an alias for whichever 32bit ARGB format is the "native"
64 * form for skia's blitters. Use this if you don't have a swizzle preference
65 * for 32bit pixels.
reed@google.com3443fd82013-11-13 19:09:13 +000066 */
67enum SkColorType {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000068 kUnknown_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000069 kAlpha_8_SkColorType,
70 kRGB_565_SkColorType,
reed@google.com9230ea22013-12-09 22:01:03 +000071 kARGB_4444_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000072 kRGBA_8888_SkColorType,
73 kBGRA_8888_SkColorType,
reed@google.com9230ea22013-12-09 22:01:03 +000074 kIndex_8_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000075
reed@google.com9230ea22013-12-09 22:01:03 +000076 kLastEnum_SkColorType = kIndex_8_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000077
78#if SK_PMCOLOR_BYTE_ORDER(B,G,R,A)
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000079 kN32_SkColorType = kBGRA_8888_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000080#elif SK_PMCOLOR_BYTE_ORDER(R,G,B,A)
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000081 kN32_SkColorType = kRGBA_8888_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000082#else
reed3b40ee62014-12-21 14:29:04 -080083 #error "SK_*32_SHFIT values must correspond to BGRA or RGBA byte order"
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000084#endif
reed@google.com3443fd82013-11-13 19:09:13 +000085};
86
87static int SkColorTypeBytesPerPixel(SkColorType ct) {
88 static const uint8_t gSize[] = {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000089 0, // Unknown
reed@google.com3443fd82013-11-13 19:09:13 +000090 1, // Alpha_8
91 2, // RGB_565
reed@google.com9230ea22013-12-09 22:01:03 +000092 2, // ARGB_4444
reed@google.com3443fd82013-11-13 19:09:13 +000093 4, // RGBA_8888
94 4, // BGRA_8888
95 1, // kIndex_8
96 };
97 SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gSize) == (size_t)(kLastEnum_SkColorType + 1),
98 size_mismatch_with_SkColorType_enum);
99
100 SkASSERT((size_t)ct < SK_ARRAY_COUNT(gSize));
101 return gSize[ct];
102}
103
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000104static inline size_t SkColorTypeMinRowBytes(SkColorType ct, int width) {
105 return width * SkColorTypeBytesPerPixel(ct);
106}
107
108static inline bool SkColorTypeIsValid(unsigned value) {
109 return value <= kLastEnum_SkColorType;
110}
111
reed@google.com3443fd82013-11-13 19:09:13 +0000112///////////////////////////////////////////////////////////////////////////////
113
114/**
scroggo2fd0d142014-07-01 07:08:19 -0700115 * Return true if alphaType is supported by colorType. If there is a canonical
116 * alphaType for this colorType, return it in canonical.
117 */
118bool SkColorTypeValidateAlphaType(SkColorType colorType, SkAlphaType alphaType,
119 SkAlphaType* canonical = NULL);
120
121///////////////////////////////////////////////////////////////////////////////
122
123/**
rileyaabaef862014-09-12 17:45:58 -0700124 * Describes the color space a YUV pixel.
125 */
126enum SkYUVColorSpace {
127 /** Standard JPEG color space. */
128 kJPEG_SkYUVColorSpace,
129 /** SDTV standard Rec. 601 color space. Uses "studio swing" [16, 235] color
130 range. See http://en.wikipedia.org/wiki/Rec._601 for details. */
131 kRec601_SkYUVColorSpace,
132
133 kLastEnum_SkYUVColorSpace = kRec601_SkYUVColorSpace
134};
135
136///////////////////////////////////////////////////////////////////////////////
137
reed7c748852014-11-10 08:57:21 -0800138enum SkColorProfileType {
139 kLinear_SkColorProfileType,
140 kSRGB_SkColorProfileType,
141
142 kLastEnum_SkColorProfileType = kSRGB_SkColorProfileType
143};
144
rileyaabaef862014-09-12 17:45:58 -0700145/**
reed@google.com3443fd82013-11-13 19:09:13 +0000146 * Describe an image's dimensions and pixel type.
reed7c748852014-11-10 08:57:21 -0800147 * Used for both src images and render-targets (surfaces).
reed@google.com3443fd82013-11-13 19:09:13 +0000148 */
reed41814922015-01-30 14:54:38 -0800149struct SK_API SkImageInfo {
reede5ea5002014-09-03 11:54:58 -0700150public:
151 SkImageInfo()
152 : fWidth(0)
153 , fHeight(0)
154 , fColorType(kUnknown_SkColorType)
reed44977482015-02-27 10:23:00 -0800155 , fAlphaType(kUnknown_SkAlphaType)
reed7c748852014-11-10 08:57:21 -0800156 , fProfileType(kLinear_SkColorProfileType)
reede5ea5002014-09-03 11:54:58 -0700157 {}
reed@google.com3443fd82013-11-13 19:09:13 +0000158
reed7c748852014-11-10 08:57:21 -0800159 static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at,
160 SkColorProfileType pt = kLinear_SkColorProfileType) {
161 return SkImageInfo(width, height, ct, at, pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000162 }
163
164 /**
165 * Sets colortype to the native ARGB32 type.
166 */
reed7c748852014-11-10 08:57:21 -0800167 static SkImageInfo MakeN32(int width, int height, SkAlphaType at,
168 SkColorProfileType pt = kLinear_SkColorProfileType) {
169 return SkImageInfo(width, height, kN32_SkColorType, at, pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000170 }
171
172 /**
173 * Sets colortype to the native ARGB32 type, and the alphatype to premul.
174 */
reed7c748852014-11-10 08:57:21 -0800175 static SkImageInfo MakeN32Premul(int width, int height,
176 SkColorProfileType pt = kLinear_SkColorProfileType) {
177 return SkImageInfo(width, height, kN32_SkColorType, kPremul_SkAlphaType, pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000178 }
skia.committer@gmail.comd77b3ec2014-01-15 07:01:43 +0000179
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000180 /**
181 * Sets colortype to the native ARGB32 type, and the alphatype to premul.
182 */
reed7c748852014-11-10 08:57:21 -0800183 static SkImageInfo MakeN32Premul(const SkISize& size,
184 SkColorProfileType pt = kLinear_SkColorProfileType) {
185 return MakeN32Premul(size.width(), size.height(), pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000186 }
skia.committer@gmail.comd77b3ec2014-01-15 07:01:43 +0000187
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000188 static SkImageInfo MakeA8(int width, int height) {
reed7c748852014-11-10 08:57:21 -0800189 return SkImageInfo(width, height, kAlpha_8_SkColorType, kPremul_SkAlphaType,
190 kLinear_SkColorProfileType);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000191 }
skia.committer@gmail.comd77b3ec2014-01-15 07:01:43 +0000192
reed@google.com900ecf22014-02-20 20:55:37 +0000193 static SkImageInfo MakeUnknown(int width, int height) {
reed44977482015-02-27 10:23:00 -0800194 return SkImageInfo(width, height, kUnknown_SkColorType, kUnknown_SkAlphaType,
reed7c748852014-11-10 08:57:21 -0800195 kLinear_SkColorProfileType);
reed@google.com900ecf22014-02-20 20:55:37 +0000196 }
197
reedf252f642014-06-14 04:24:56 -0700198 static SkImageInfo MakeUnknown() {
reede5ea5002014-09-03 11:54:58 -0700199 return SkImageInfo();
reedf252f642014-06-14 04:24:56 -0700200 }
201
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000202 int width() const { return fWidth; }
203 int height() const { return fHeight; }
204 SkColorType colorType() const { return fColorType; }
205 SkAlphaType alphaType() const { return fAlphaType; }
reed7c748852014-11-10 08:57:21 -0800206 SkColorProfileType profileType() const { return fProfileType; }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000207
208 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; }
209
reed@google.com3443fd82013-11-13 19:09:13 +0000210 bool isOpaque() const {
211 return SkAlphaTypeIsOpaque(fAlphaType);
212 }
213
reed7c748852014-11-10 08:57:21 -0800214 bool isLinear() const { return kLinear_SkColorProfileType == fProfileType; }
215 bool isSRGB() const { return kSRGB_SkColorProfileType == fProfileType; }
216
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000217 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
reed7c748852014-11-10 08:57:21 -0800218 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000219
reedc77392e2014-06-02 13:07:26 -0700220 /**
221 * Return a new ImageInfo with the same colortype and alphatype as this info,
222 * but with the specified width and height.
223 */
224 SkImageInfo makeWH(int newWidth, int newHeight) const {
reed7c748852014-11-10 08:57:21 -0800225 return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType, fProfileType);
reedc77392e2014-06-02 13:07:26 -0700226 }
227
reede5ea5002014-09-03 11:54:58 -0700228 SkImageInfo makeAlphaType(SkAlphaType newAlphaType) const {
reed7c748852014-11-10 08:57:21 -0800229 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType);
reede5ea5002014-09-03 11:54:58 -0700230 }
231
232 SkImageInfo makeColorType(SkColorType newColorType) const {
reed7c748852014-11-10 08:57:21 -0800233 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType);
reede5ea5002014-09-03 11:54:58 -0700234 }
reed7c748852014-11-10 08:57:21 -0800235
reed@google.com3443fd82013-11-13 19:09:13 +0000236 int bytesPerPixel() const {
237 return SkColorTypeBytesPerPixel(fColorType);
238 }
239
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000240 uint64_t minRowBytes64() const {
241 return sk_64_mul(fWidth, this->bytesPerPixel());
242 }
243
mike@reedtribe.org169a0ed2014-02-11 02:20:17 +0000244 size_t minRowBytes() const {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000245 return (size_t)this->minRowBytes64();
mike@reedtribe.org169a0ed2014-02-11 02:20:17 +0000246 }
skia.committer@gmail.com8ed64432014-02-11 03:02:13 +0000247
reed@google.com3443fd82013-11-13 19:09:13 +0000248 bool operator==(const SkImageInfo& other) const {
249 return 0 == memcmp(this, &other, sizeof(other));
250 }
251 bool operator!=(const SkImageInfo& other) const {
252 return 0 != memcmp(this, &other, sizeof(other));
253 }
reed@google.com9230ea22013-12-09 22:01:03 +0000254
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000255 void unflatten(SkReadBuffer&);
256 void flatten(SkWriteBuffer&) const;
reed@google.com9230ea22013-12-09 22:01:03 +0000257
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000258 int64_t getSafeSize64(size_t rowBytes) const {
reed@google.com9230ea22013-12-09 22:01:03 +0000259 if (0 == fHeight) {
260 return 0;
261 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000262 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel();
reed@google.com9230ea22013-12-09 22:01:03 +0000263 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000264
265 size_t getSafeSize(size_t rowBytes) const {
266 return (size_t)this->getSafeSize64(rowBytes);
267 }
268
269 bool validRowBytes(size_t rowBytes) const {
270 uint64_t rb = sk_64_mul(fWidth, this->bytesPerPixel());
271 return rowBytes >= rb;
272 }
273
274 SkDEBUGCODE(void validate() const;)
reede5ea5002014-09-03 11:54:58 -0700275
276#ifdef SK_SUPPORT_LEGACY_PUBLIC_IMAGEINFO_FIELDS
277public:
278#else
279private:
280#endif
reed7c748852014-11-10 08:57:21 -0800281 int fWidth;
282 int fHeight;
283 SkColorType fColorType;
284 SkAlphaType fAlphaType;
reede5ea5002014-09-03 11:54:58 -0700285
286private:
reed7c748852014-11-10 08:57:21 -0800287 SkImageInfo(int width, int height, SkColorType ct, SkAlphaType at, SkColorProfileType pt)
reede5ea5002014-09-03 11:54:58 -0700288 : fWidth(width)
289 , fHeight(height)
290 , fColorType(ct)
291 , fAlphaType(at)
reed7c748852014-11-10 08:57:21 -0800292 , fProfileType(pt)
reede5ea5002014-09-03 11:54:58 -0700293 {}
reed7c748852014-11-10 08:57:21 -0800294
295 SkColorProfileType fProfileType;
reed@google.com3443fd82013-11-13 19:09:13 +0000296};
297
298#endif