blob: f928416fe7bd1c9df84ef431ee13229f35c184d1 [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 {
22 /**
23 * All pixels should be treated as opaque, regardless of the value stored
24 * in their alpha field. Used for legacy images that wrote 0 or garbarge
25 * in their alpha field, but intended the RGB to be treated as opaque.
26 */
27 kIgnore_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000028
reed@google.com3443fd82013-11-13 19:09:13 +000029 /**
30 * All pixels are stored as opaque. This differs slightly from kIgnore in
31 * that kOpaque has correct "opaque" values stored in the pixels, while
32 * kIgnore may not, but in both cases the caller should treat the pixels
33 * as opaque.
34 */
35 kOpaque_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000036
reed@google.com3443fd82013-11-13 19:09:13 +000037 /**
38 * All pixels have their alpha premultiplied in their color components.
39 * This is the natural format for the rendering target pixels.
40 */
41 kPremul_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000042
reed@google.com3443fd82013-11-13 19:09:13 +000043 /**
44 * All pixels have their color components stored without any regard to the
45 * alpha. e.g. this is the default configuration for PNG images.
46 *
47 * This alpha-type is ONLY supported for input images. Rendering cannot
48 * generate this on output.
49 */
50 kUnpremul_SkAlphaType,
skia.committer@gmail.com73a5d532013-11-14 07:02:31 +000051
reed@google.com3443fd82013-11-13 19:09:13 +000052 kLastEnum_SkAlphaType = kUnpremul_SkAlphaType
53};
54
55static inline bool SkAlphaTypeIsOpaque(SkAlphaType at) {
56 SK_COMPILE_ASSERT(kIgnore_SkAlphaType < kOpaque_SkAlphaType, bad_alphatype_order);
57 SK_COMPILE_ASSERT(kPremul_SkAlphaType > kOpaque_SkAlphaType, bad_alphatype_order);
58 SK_COMPILE_ASSERT(kUnpremul_SkAlphaType > kOpaque_SkAlphaType, bad_alphatype_order);
59
60 return (unsigned)at <= kOpaque_SkAlphaType;
61}
62
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000063static inline bool SkAlphaTypeIsValid(unsigned value) {
64 return value <= kLastEnum_SkAlphaType;
65}
66
reed@google.com3443fd82013-11-13 19:09:13 +000067///////////////////////////////////////////////////////////////////////////////
68
69/**
70 * Describes how to interpret the components of a pixel.
reed6c6ddb82014-06-30 12:44:03 -070071 *
72 * kN32_SkColorType is an alias for whichever 32bit ARGB format is the "native"
73 * form for skia's blitters. Use this if you don't have a swizzle preference
74 * for 32bit pixels.
reed@google.com3443fd82013-11-13 19:09:13 +000075 */
76enum SkColorType {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000077 kUnknown_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000078 kAlpha_8_SkColorType,
79 kRGB_565_SkColorType,
reed@google.com9230ea22013-12-09 22:01:03 +000080 kARGB_4444_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000081 kRGBA_8888_SkColorType,
82 kBGRA_8888_SkColorType,
reed@google.com9230ea22013-12-09 22:01:03 +000083 kIndex_8_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000084
reed@google.com9230ea22013-12-09 22:01:03 +000085 kLastEnum_SkColorType = kIndex_8_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000086
87#if SK_PMCOLOR_BYTE_ORDER(B,G,R,A)
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000088 kN32_SkColorType = kBGRA_8888_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000089#elif SK_PMCOLOR_BYTE_ORDER(R,G,B,A)
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000090 kN32_SkColorType = kRGBA_8888_SkColorType,
reed@google.com3443fd82013-11-13 19:09:13 +000091#else
reed3b40ee62014-12-21 14:29:04 -080092 #error "SK_*32_SHFIT values must correspond to BGRA or RGBA byte order"
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +000093#endif
reed@google.com3443fd82013-11-13 19:09:13 +000094};
95
96static int SkColorTypeBytesPerPixel(SkColorType ct) {
97 static const uint8_t gSize[] = {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000098 0, // Unknown
reed@google.com3443fd82013-11-13 19:09:13 +000099 1, // Alpha_8
100 2, // RGB_565
reed@google.com9230ea22013-12-09 22:01:03 +0000101 2, // ARGB_4444
reed@google.com3443fd82013-11-13 19:09:13 +0000102 4, // RGBA_8888
103 4, // BGRA_8888
104 1, // kIndex_8
105 };
106 SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gSize) == (size_t)(kLastEnum_SkColorType + 1),
107 size_mismatch_with_SkColorType_enum);
108
109 SkASSERT((size_t)ct < SK_ARRAY_COUNT(gSize));
110 return gSize[ct];
111}
112
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000113static inline size_t SkColorTypeMinRowBytes(SkColorType ct, int width) {
114 return width * SkColorTypeBytesPerPixel(ct);
115}
116
117static inline bool SkColorTypeIsValid(unsigned value) {
118 return value <= kLastEnum_SkColorType;
119}
120
reed@google.com3443fd82013-11-13 19:09:13 +0000121///////////////////////////////////////////////////////////////////////////////
122
123/**
scroggo2fd0d142014-07-01 07:08:19 -0700124 * Return true if alphaType is supported by colorType. If there is a canonical
125 * alphaType for this colorType, return it in canonical.
126 */
127bool SkColorTypeValidateAlphaType(SkColorType colorType, SkAlphaType alphaType,
128 SkAlphaType* canonical = NULL);
129
130///////////////////////////////////////////////////////////////////////////////
131
132/**
rileyaabaef862014-09-12 17:45:58 -0700133 * Describes the color space a YUV pixel.
134 */
135enum SkYUVColorSpace {
136 /** Standard JPEG color space. */
137 kJPEG_SkYUVColorSpace,
138 /** SDTV standard Rec. 601 color space. Uses "studio swing" [16, 235] color
139 range. See http://en.wikipedia.org/wiki/Rec._601 for details. */
140 kRec601_SkYUVColorSpace,
141
142 kLastEnum_SkYUVColorSpace = kRec601_SkYUVColorSpace
143};
144
145///////////////////////////////////////////////////////////////////////////////
146
reed7c748852014-11-10 08:57:21 -0800147enum SkColorProfileType {
148 kLinear_SkColorProfileType,
149 kSRGB_SkColorProfileType,
150
151 kLastEnum_SkColorProfileType = kSRGB_SkColorProfileType
152};
153
rileyaabaef862014-09-12 17:45:58 -0700154/**
reed@google.com3443fd82013-11-13 19:09:13 +0000155 * Describe an image's dimensions and pixel type.
reed7c748852014-11-10 08:57:21 -0800156 * Used for both src images and render-targets (surfaces).
reed@google.com3443fd82013-11-13 19:09:13 +0000157 */
reed41814922015-01-30 14:54:38 -0800158struct SK_API SkImageInfo {
reede5ea5002014-09-03 11:54:58 -0700159public:
160 SkImageInfo()
161 : fWidth(0)
162 , fHeight(0)
163 , fColorType(kUnknown_SkColorType)
164 , fAlphaType(kIgnore_SkAlphaType)
reed7c748852014-11-10 08:57:21 -0800165 , fProfileType(kLinear_SkColorProfileType)
reede5ea5002014-09-03 11:54:58 -0700166 {}
reed@google.com3443fd82013-11-13 19:09:13 +0000167
reed7c748852014-11-10 08:57:21 -0800168 static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at,
169 SkColorProfileType pt = kLinear_SkColorProfileType) {
170 return SkImageInfo(width, height, ct, at, pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000171 }
172
173 /**
174 * Sets colortype to the native ARGB32 type.
175 */
reed7c748852014-11-10 08:57:21 -0800176 static SkImageInfo MakeN32(int width, int height, SkAlphaType at,
177 SkColorProfileType pt = kLinear_SkColorProfileType) {
178 return SkImageInfo(width, height, kN32_SkColorType, at, pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000179 }
180
181 /**
182 * Sets colortype to the native ARGB32 type, and the alphatype to premul.
183 */
reed7c748852014-11-10 08:57:21 -0800184 static SkImageInfo MakeN32Premul(int width, int height,
185 SkColorProfileType pt = kLinear_SkColorProfileType) {
186 return SkImageInfo(width, height, kN32_SkColorType, kPremul_SkAlphaType, pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000187 }
skia.committer@gmail.comd77b3ec2014-01-15 07:01:43 +0000188
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000189 /**
190 * Sets colortype to the native ARGB32 type, and the alphatype to premul.
191 */
reed7c748852014-11-10 08:57:21 -0800192 static SkImageInfo MakeN32Premul(const SkISize& size,
193 SkColorProfileType pt = kLinear_SkColorProfileType) {
194 return MakeN32Premul(size.width(), size.height(), pt);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000195 }
skia.committer@gmail.comd77b3ec2014-01-15 07:01:43 +0000196
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000197 static SkImageInfo MakeA8(int width, int height) {
reed7c748852014-11-10 08:57:21 -0800198 return SkImageInfo(width, height, kAlpha_8_SkColorType, kPremul_SkAlphaType,
199 kLinear_SkColorProfileType);
commit-bot@chromium.org32678d92014-01-15 02:38:22 +0000200 }
skia.committer@gmail.comd77b3ec2014-01-15 07:01:43 +0000201
reed@google.com900ecf22014-02-20 20:55:37 +0000202 static SkImageInfo MakeUnknown(int width, int height) {
reed7c748852014-11-10 08:57:21 -0800203 return SkImageInfo(width, height, kUnknown_SkColorType, kIgnore_SkAlphaType,
204 kLinear_SkColorProfileType);
reed@google.com900ecf22014-02-20 20:55:37 +0000205 }
206
reedf252f642014-06-14 04:24:56 -0700207 static SkImageInfo MakeUnknown() {
reede5ea5002014-09-03 11:54:58 -0700208 return SkImageInfo();
reedf252f642014-06-14 04:24:56 -0700209 }
210
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000211 int width() const { return fWidth; }
212 int height() const { return fHeight; }
213 SkColorType colorType() const { return fColorType; }
214 SkAlphaType alphaType() const { return fAlphaType; }
reed7c748852014-11-10 08:57:21 -0800215 SkColorProfileType profileType() const { return fProfileType; }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000216
217 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; }
218
reed@google.com3443fd82013-11-13 19:09:13 +0000219 bool isOpaque() const {
220 return SkAlphaTypeIsOpaque(fAlphaType);
221 }
222
reed7c748852014-11-10 08:57:21 -0800223 bool isLinear() const { return kLinear_SkColorProfileType == fProfileType; }
224 bool isSRGB() const { return kSRGB_SkColorProfileType == fProfileType; }
225
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000226 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
reed7c748852014-11-10 08:57:21 -0800227 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000228
reedc77392e2014-06-02 13:07:26 -0700229 /**
230 * Return a new ImageInfo with the same colortype and alphatype as this info,
231 * but with the specified width and height.
232 */
233 SkImageInfo makeWH(int newWidth, int newHeight) const {
reed7c748852014-11-10 08:57:21 -0800234 return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType, fProfileType);
reedc77392e2014-06-02 13:07:26 -0700235 }
236
reede5ea5002014-09-03 11:54:58 -0700237 SkImageInfo makeAlphaType(SkAlphaType newAlphaType) const {
reed7c748852014-11-10 08:57:21 -0800238 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType);
reede5ea5002014-09-03 11:54:58 -0700239 }
240
241 SkImageInfo makeColorType(SkColorType newColorType) const {
reed7c748852014-11-10 08:57:21 -0800242 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType);
reede5ea5002014-09-03 11:54:58 -0700243 }
reed7c748852014-11-10 08:57:21 -0800244
reed@google.com3443fd82013-11-13 19:09:13 +0000245 int bytesPerPixel() const {
246 return SkColorTypeBytesPerPixel(fColorType);
247 }
248
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000249 uint64_t minRowBytes64() const {
250 return sk_64_mul(fWidth, this->bytesPerPixel());
251 }
252
mike@reedtribe.org169a0ed2014-02-11 02:20:17 +0000253 size_t minRowBytes() const {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000254 return (size_t)this->minRowBytes64();
mike@reedtribe.org169a0ed2014-02-11 02:20:17 +0000255 }
skia.committer@gmail.com8ed64432014-02-11 03:02:13 +0000256
reed@google.com3443fd82013-11-13 19:09:13 +0000257 bool operator==(const SkImageInfo& other) const {
258 return 0 == memcmp(this, &other, sizeof(other));
259 }
260 bool operator!=(const SkImageInfo& other) const {
261 return 0 != memcmp(this, &other, sizeof(other));
262 }
reed@google.com9230ea22013-12-09 22:01:03 +0000263
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000264 void unflatten(SkReadBuffer&);
265 void flatten(SkWriteBuffer&) const;
reed@google.com9230ea22013-12-09 22:01:03 +0000266
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000267 int64_t getSafeSize64(size_t rowBytes) const {
reed@google.com9230ea22013-12-09 22:01:03 +0000268 if (0 == fHeight) {
269 return 0;
270 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000271 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel();
reed@google.com9230ea22013-12-09 22:01:03 +0000272 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000273
274 size_t getSafeSize(size_t rowBytes) const {
275 return (size_t)this->getSafeSize64(rowBytes);
276 }
277
278 bool validRowBytes(size_t rowBytes) const {
279 uint64_t rb = sk_64_mul(fWidth, this->bytesPerPixel());
280 return rowBytes >= rb;
281 }
282
283 SkDEBUGCODE(void validate() const;)
reede5ea5002014-09-03 11:54:58 -0700284
285#ifdef SK_SUPPORT_LEGACY_PUBLIC_IMAGEINFO_FIELDS
286public:
287#else
288private:
289#endif
reed7c748852014-11-10 08:57:21 -0800290 int fWidth;
291 int fHeight;
292 SkColorType fColorType;
293 SkAlphaType fAlphaType;
reede5ea5002014-09-03 11:54:58 -0700294
295private:
reed7c748852014-11-10 08:57:21 -0800296 SkImageInfo(int width, int height, SkColorType ct, SkAlphaType at, SkColorProfileType pt)
reede5ea5002014-09-03 11:54:58 -0700297 : fWidth(width)
298 , fHeight(height)
299 , fColorType(ct)
300 , fAlphaType(at)
reed7c748852014-11-10 08:57:21 -0800301 , fProfileType(pt)
reede5ea5002014-09-03 11:54:58 -0700302 {}
reed7c748852014-11-10 08:57:21 -0800303
304 SkColorProfileType fProfileType;
reed@google.com3443fd82013-11-13 19:09:13 +0000305};
306
307#endif