2013-11-13 19:09:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkImageInfo_DEFINED
|
|
|
|
#define SkImageInfo_DEFINED
|
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
#include "SkMath.h"
|
2014-10-24 19:54:53 +00:00
|
|
|
#include "SkRect.h"
|
2014-01-15 02:38:22 +00:00
|
|
|
#include "SkSize.h"
|
2013-11-13 19:09:13 +00:00
|
|
|
|
2014-01-30 18:58:24 +00:00
|
|
|
class SkReadBuffer;
|
2014-10-24 19:54:53 +00:00
|
|
|
class SkWriteBuffer;
|
2013-12-09 22:01:03 +00:00
|
|
|
|
2015-08-13 20:32:39 +00:00
|
|
|
/**
|
2015-10-12 17:39:46 +00:00
|
|
|
* Describes how to interpret the alpha component of a pixel.
|
2013-11-13 19:09:13 +00:00
|
|
|
*/
|
|
|
|
enum SkAlphaType {
|
2015-02-27 18:23:00 +00:00
|
|
|
kUnknown_SkAlphaType,
|
2013-11-14 07:02:31 +00:00
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
/**
|
|
|
|
* All pixels are stored as opaque. This differs slightly from kIgnore in
|
|
|
|
* that kOpaque has correct "opaque" values stored in the pixels, while
|
|
|
|
* kIgnore may not, but in both cases the caller should treat the pixels
|
|
|
|
* as opaque.
|
|
|
|
*/
|
|
|
|
kOpaque_SkAlphaType,
|
2013-11-14 07:02:31 +00:00
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
/**
|
|
|
|
* All pixels have their alpha premultiplied in their color components.
|
|
|
|
* This is the natural format for the rendering target pixels.
|
|
|
|
*/
|
|
|
|
kPremul_SkAlphaType,
|
2013-11-14 07:02:31 +00:00
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
/**
|
|
|
|
* All pixels have their color components stored without any regard to the
|
|
|
|
* alpha. e.g. this is the default configuration for PNG images.
|
|
|
|
*
|
|
|
|
* This alpha-type is ONLY supported for input images. Rendering cannot
|
|
|
|
* generate this on output.
|
|
|
|
*/
|
|
|
|
kUnpremul_SkAlphaType,
|
2013-11-14 07:02:31 +00:00
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
kLastEnum_SkAlphaType = kUnpremul_SkAlphaType
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline bool SkAlphaTypeIsOpaque(SkAlphaType at) {
|
2015-02-27 18:23:00 +00:00
|
|
|
return kOpaque_SkAlphaType == at;
|
2013-11-13 19:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
static inline bool SkAlphaTypeIsValid(unsigned value) {
|
|
|
|
return value <= kLastEnum_SkAlphaType;
|
|
|
|
}
|
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Describes how to interpret the components of a pixel.
|
2014-06-30 19:44:03 +00:00
|
|
|
*
|
|
|
|
* kN32_SkColorType is an alias for whichever 32bit ARGB format is the "native"
|
|
|
|
* form for skia's blitters. Use this if you don't have a swizzle preference
|
|
|
|
* for 32bit pixels.
|
2013-11-13 19:09:13 +00:00
|
|
|
*/
|
|
|
|
enum SkColorType {
|
2014-02-11 18:21:45 +00:00
|
|
|
kUnknown_SkColorType,
|
2013-11-13 19:09:13 +00:00
|
|
|
kAlpha_8_SkColorType,
|
|
|
|
kRGB_565_SkColorType,
|
2013-12-09 22:01:03 +00:00
|
|
|
kARGB_4444_SkColorType,
|
2013-11-13 19:09:13 +00:00
|
|
|
kRGBA_8888_SkColorType,
|
|
|
|
kBGRA_8888_SkColorType,
|
2013-12-09 22:01:03 +00:00
|
|
|
kIndex_8_SkColorType,
|
2015-03-18 00:44:06 +00:00
|
|
|
kGray_8_SkColorType,
|
2013-11-13 19:09:13 +00:00
|
|
|
|
2015-03-18 00:44:06 +00:00
|
|
|
kLastEnum_SkColorType = kGray_8_SkColorType,
|
2013-11-13 19:09:13 +00:00
|
|
|
|
|
|
|
#if SK_PMCOLOR_BYTE_ORDER(B,G,R,A)
|
2014-04-11 17:15:40 +00:00
|
|
|
kN32_SkColorType = kBGRA_8888_SkColorType,
|
2013-11-13 19:09:13 +00:00
|
|
|
#elif SK_PMCOLOR_BYTE_ORDER(R,G,B,A)
|
2014-04-11 17:15:40 +00:00
|
|
|
kN32_SkColorType = kRGBA_8888_SkColorType,
|
2013-11-13 19:09:13 +00:00
|
|
|
#else
|
2014-12-21 22:29:04 +00:00
|
|
|
#error "SK_*32_SHFIT values must correspond to BGRA or RGBA byte order"
|
2014-04-11 17:15:40 +00:00
|
|
|
#endif
|
2013-11-13 19:09:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int SkColorTypeBytesPerPixel(SkColorType ct) {
|
|
|
|
static const uint8_t gSize[] = {
|
2014-02-11 18:21:45 +00:00
|
|
|
0, // Unknown
|
2013-11-13 19:09:13 +00:00
|
|
|
1, // Alpha_8
|
|
|
|
2, // RGB_565
|
2013-12-09 22:01:03 +00:00
|
|
|
2, // ARGB_4444
|
2013-11-13 19:09:13 +00:00
|
|
|
4, // RGBA_8888
|
|
|
|
4, // BGRA_8888
|
|
|
|
1, // kIndex_8
|
2015-03-18 00:44:06 +00:00
|
|
|
1, // kGray_8
|
2013-11-13 19:09:13 +00:00
|
|
|
};
|
2015-08-20 14:57:51 +00:00
|
|
|
static_assert(SK_ARRAY_COUNT(gSize) == (size_t)(kLastEnum_SkColorType + 1),
|
|
|
|
"size_mismatch_with_SkColorType_enum");
|
2013-11-13 19:09:13 +00:00
|
|
|
|
|
|
|
SkASSERT((size_t)ct < SK_ARRAY_COUNT(gSize));
|
|
|
|
return gSize[ct];
|
|
|
|
}
|
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
static inline size_t SkColorTypeMinRowBytes(SkColorType ct, int width) {
|
|
|
|
return width * SkColorTypeBytesPerPixel(ct);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool SkColorTypeIsValid(unsigned value) {
|
|
|
|
return value <= kLastEnum_SkColorType;
|
|
|
|
}
|
|
|
|
|
2015-05-22 15:06:21 +00:00
|
|
|
static inline size_t SkColorTypeComputeOffset(SkColorType ct, int x, int y, size_t rowBytes) {
|
|
|
|
int shift = 0;
|
|
|
|
switch (SkColorTypeBytesPerPixel(ct)) {
|
|
|
|
case 4: shift = 2; break;
|
|
|
|
case 2: shift = 1; break;
|
|
|
|
case 1: shift = 0; break;
|
|
|
|
default: return 0;
|
|
|
|
}
|
|
|
|
return y * rowBytes + (x << shift);
|
|
|
|
}
|
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-07-01 14:08:19 +00:00
|
|
|
/**
|
|
|
|
* Return true if alphaType is supported by colorType. If there is a canonical
|
|
|
|
* alphaType for this colorType, return it in canonical.
|
|
|
|
*/
|
|
|
|
bool SkColorTypeValidateAlphaType(SkColorType colorType, SkAlphaType alphaType,
|
|
|
|
SkAlphaType* canonical = NULL);
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-09-13 00:45:58 +00:00
|
|
|
/**
|
|
|
|
* Describes the color space a YUV pixel.
|
|
|
|
*/
|
|
|
|
enum SkYUVColorSpace {
|
|
|
|
/** Standard JPEG color space. */
|
|
|
|
kJPEG_SkYUVColorSpace,
|
|
|
|
/** SDTV standard Rec. 601 color space. Uses "studio swing" [16, 235] color
|
|
|
|
range. See http://en.wikipedia.org/wiki/Rec._601 for details. */
|
|
|
|
kRec601_SkYUVColorSpace,
|
2015-07-20 22:00:03 +00:00
|
|
|
/** HDTV standard Rec. 709 color space. Uses "studio swing" [16, 235] color
|
|
|
|
range. See http://en.wikipedia.org/wiki/Rec._709 for details. */
|
|
|
|
kRec709_SkYUVColorSpace,
|
2014-09-13 00:45:58 +00:00
|
|
|
|
2015-07-20 22:00:03 +00:00
|
|
|
kLastEnum_SkYUVColorSpace = kRec709_SkYUVColorSpace
|
2014-09-13 00:45:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-11-10 16:57:21 +00:00
|
|
|
enum SkColorProfileType {
|
|
|
|
kLinear_SkColorProfileType,
|
|
|
|
kSRGB_SkColorProfileType,
|
|
|
|
|
|
|
|
kLastEnum_SkColorProfileType = kSRGB_SkColorProfileType
|
|
|
|
};
|
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
/**
|
|
|
|
* Describe an image's dimensions and pixel type.
|
2014-11-10 16:57:21 +00:00
|
|
|
* Used for both src images and render-targets (surfaces).
|
2013-11-13 19:09:13 +00:00
|
|
|
*/
|
2015-01-30 22:54:38 +00:00
|
|
|
struct SK_API SkImageInfo {
|
2014-09-03 18:54:58 +00:00
|
|
|
public:
|
|
|
|
SkImageInfo()
|
|
|
|
: fWidth(0)
|
|
|
|
, fHeight(0)
|
|
|
|
, fColorType(kUnknown_SkColorType)
|
2015-02-27 18:23:00 +00:00
|
|
|
, fAlphaType(kUnknown_SkAlphaType)
|
2014-11-10 16:57:21 +00:00
|
|
|
, fProfileType(kLinear_SkColorProfileType)
|
2014-09-03 18:54:58 +00:00
|
|
|
{}
|
2013-11-13 19:09:13 +00:00
|
|
|
|
2014-11-10 16:57:21 +00:00
|
|
|
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at,
|
|
|
|
SkColorProfileType pt = kLinear_SkColorProfileType) {
|
|
|
|
return SkImageInfo(width, height, ct, at, pt);
|
2014-01-15 02:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets colortype to the native ARGB32 type.
|
|
|
|
*/
|
2014-11-10 16:57:21 +00:00
|
|
|
static SkImageInfo MakeN32(int width, int height, SkAlphaType at,
|
|
|
|
SkColorProfileType pt = kLinear_SkColorProfileType) {
|
|
|
|
return SkImageInfo(width, height, kN32_SkColorType, at, pt);
|
2014-01-15 02:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets colortype to the native ARGB32 type, and the alphatype to premul.
|
|
|
|
*/
|
2014-11-10 16:57:21 +00:00
|
|
|
static SkImageInfo MakeN32Premul(int width, int height,
|
|
|
|
SkColorProfileType pt = kLinear_SkColorProfileType) {
|
|
|
|
return SkImageInfo(width, height, kN32_SkColorType, kPremul_SkAlphaType, pt);
|
2014-01-15 02:38:22 +00:00
|
|
|
}
|
2014-01-15 07:01:43 +00:00
|
|
|
|
2014-01-15 02:38:22 +00:00
|
|
|
/**
|
|
|
|
* Sets colortype to the native ARGB32 type, and the alphatype to premul.
|
|
|
|
*/
|
2014-11-10 16:57:21 +00:00
|
|
|
static SkImageInfo MakeN32Premul(const SkISize& size,
|
|
|
|
SkColorProfileType pt = kLinear_SkColorProfileType) {
|
|
|
|
return MakeN32Premul(size.width(), size.height(), pt);
|
2014-01-15 02:38:22 +00:00
|
|
|
}
|
2014-01-15 07:01:43 +00:00
|
|
|
|
2014-01-15 02:38:22 +00:00
|
|
|
static SkImageInfo MakeA8(int width, int height) {
|
2014-11-10 16:57:21 +00:00
|
|
|
return SkImageInfo(width, height, kAlpha_8_SkColorType, kPremul_SkAlphaType,
|
|
|
|
kLinear_SkColorProfileType);
|
2014-01-15 02:38:22 +00:00
|
|
|
}
|
2014-01-15 07:01:43 +00:00
|
|
|
|
2014-02-20 20:55:37 +00:00
|
|
|
static SkImageInfo MakeUnknown(int width, int height) {
|
2015-02-27 18:23:00 +00:00
|
|
|
return SkImageInfo(width, height, kUnknown_SkColorType, kUnknown_SkAlphaType,
|
2014-11-10 16:57:21 +00:00
|
|
|
kLinear_SkColorProfileType);
|
2014-02-20 20:55:37 +00:00
|
|
|
}
|
|
|
|
|
2014-06-14 11:24:56 +00:00
|
|
|
static SkImageInfo MakeUnknown() {
|
2014-09-03 18:54:58 +00:00
|
|
|
return SkImageInfo();
|
2014-06-14 11:24:56 +00:00
|
|
|
}
|
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
int width() const { return fWidth; }
|
|
|
|
int height() const { return fHeight; }
|
|
|
|
SkColorType colorType() const { return fColorType; }
|
|
|
|
SkAlphaType alphaType() const { return fAlphaType; }
|
2014-11-10 16:57:21 +00:00
|
|
|
SkColorProfileType profileType() const { return fProfileType; }
|
2014-02-11 18:21:45 +00:00
|
|
|
|
|
|
|
bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; }
|
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
bool isOpaque() const {
|
|
|
|
return SkAlphaTypeIsOpaque(fAlphaType);
|
|
|
|
}
|
|
|
|
|
2014-11-10 16:57:21 +00:00
|
|
|
bool isLinear() const { return kLinear_SkColorProfileType == fProfileType; }
|
|
|
|
bool isSRGB() const { return kSRGB_SkColorProfileType == fProfileType; }
|
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
|
2014-11-10 16:57:21 +00:00
|
|
|
SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
|
2014-02-11 18:21:45 +00:00
|
|
|
|
2014-06-02 20:07:26 +00:00
|
|
|
/**
|
|
|
|
* Return a new ImageInfo with the same colortype and alphatype as this info,
|
|
|
|
* but with the specified width and height.
|
|
|
|
*/
|
|
|
|
SkImageInfo makeWH(int newWidth, int newHeight) const {
|
2014-11-10 16:57:21 +00:00
|
|
|
return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType, fProfileType);
|
2014-06-02 20:07:26 +00:00
|
|
|
}
|
|
|
|
|
2014-09-03 18:54:58 +00:00
|
|
|
SkImageInfo makeAlphaType(SkAlphaType newAlphaType) const {
|
2014-11-10 16:57:21 +00:00
|
|
|
return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType);
|
2014-09-03 18:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SkImageInfo makeColorType(SkColorType newColorType) const {
|
2014-11-10 16:57:21 +00:00
|
|
|
return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType);
|
2014-09-03 18:54:58 +00:00
|
|
|
}
|
2014-11-10 16:57:21 +00:00
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
int bytesPerPixel() const {
|
|
|
|
return SkColorTypeBytesPerPixel(fColorType);
|
|
|
|
}
|
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
uint64_t minRowBytes64() const {
|
|
|
|
return sk_64_mul(fWidth, this->bytesPerPixel());
|
|
|
|
}
|
|
|
|
|
2013-12-09 22:01:03 +00:00
|
|
|
size_t minRowBytes() const {
|
2014-02-11 18:21:45 +00:00
|
|
|
return (size_t)this->minRowBytes64();
|
2013-12-09 22:01:03 +00:00
|
|
|
}
|
2014-02-11 03:02:13 +00:00
|
|
|
|
2015-05-22 15:06:21 +00:00
|
|
|
size_t computeOffset(int x, int y, size_t rowBytes) const {
|
|
|
|
SkASSERT((unsigned)x < (unsigned)fWidth);
|
|
|
|
SkASSERT((unsigned)y < (unsigned)fHeight);
|
|
|
|
return SkColorTypeComputeOffset(fColorType, x, y, rowBytes);
|
|
|
|
}
|
|
|
|
|
2013-11-13 19:09:13 +00:00
|
|
|
bool operator==(const SkImageInfo& other) const {
|
|
|
|
return 0 == memcmp(this, &other, sizeof(other));
|
|
|
|
}
|
|
|
|
bool operator!=(const SkImageInfo& other) const {
|
|
|
|
return 0 != memcmp(this, &other, sizeof(other));
|
|
|
|
}
|
2013-12-09 22:01:03 +00:00
|
|
|
|
2014-01-30 18:58:24 +00:00
|
|
|
void unflatten(SkReadBuffer&);
|
|
|
|
void flatten(SkWriteBuffer&) const;
|
2013-12-09 22:01:03 +00:00
|
|
|
|
2014-02-11 18:21:45 +00:00
|
|
|
int64_t getSafeSize64(size_t rowBytes) const {
|
2013-12-09 22:01:03 +00:00
|
|
|
if (0 == fHeight) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-02-11 18:21:45 +00:00
|
|
|
return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel();
|
2013-12-09 22:01:03 +00:00
|
|
|
}
|
2014-02-11 18:21:45 +00:00
|
|
|
|
|
|
|
size_t getSafeSize(size_t rowBytes) const {
|
2015-06-18 20:41:40 +00:00
|
|
|
int64_t size = this->getSafeSize64(rowBytes);
|
|
|
|
if (!sk_64_isS32(size)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return sk_64_asS32(size);
|
2014-02-11 18:21:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool validRowBytes(size_t rowBytes) const {
|
|
|
|
uint64_t rb = sk_64_mul(fWidth, this->bytesPerPixel());
|
|
|
|
return rowBytes >= rb;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkDEBUGCODE(void validate() const;)
|
2014-09-03 18:54:58 +00:00
|
|
|
|
|
|
|
private:
|
2014-11-10 16:57:21 +00:00
|
|
|
int fWidth;
|
|
|
|
int fHeight;
|
|
|
|
SkColorType fColorType;
|
|
|
|
SkAlphaType fAlphaType;
|
2015-08-01 14:03:20 +00:00
|
|
|
SkColorProfileType fProfileType;
|
2014-09-03 18:54:58 +00:00
|
|
|
|
2014-11-10 16:57:21 +00:00
|
|
|
SkImageInfo(int width, int height, SkColorType ct, SkAlphaType at, SkColorProfileType pt)
|
2014-09-03 18:54:58 +00:00
|
|
|
: fWidth(width)
|
|
|
|
, fHeight(height)
|
|
|
|
, fColorType(ct)
|
|
|
|
, fAlphaType(at)
|
2014-11-10 16:57:21 +00:00
|
|
|
, fProfileType(pt)
|
2014-09-03 18:54:58 +00:00
|
|
|
{}
|
2013-11-13 19:09:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|