Skia
2DGraphicsLibrary
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SkImageGenerator Class Reference

An interface that allows a purgeable PixelRef (such as a SkDiscardablePixelRef) to decode and re-decode an image as needed. More...

#include <SkImageGenerator.h>

Inheritance diagram for SkImageGenerator:

Classes

struct  SupportedSizes
 

Public Member Functions

virtual ~SkImageGenerator ()
 The PixelRef which takes ownership of this SkImageGenerator will call the image generator's destructor.
 
uint32_t uniqueID () const
 
SkDatarefEncodedData (GrContext *ctx=nullptr)
 Return a ref to the encoded (i.e. More...
 
const SkImageInfogetInfo () const
 Return the ImageInfo associated with this generator.
 
bool getPixels (const SkImageInfo &info, void *pixels, size_t rowBytes, SkPMColor ctable[], int *ctableCount)
 Decode into the given pixels, a block of memory of size at least (info.fHeight - 1) * rowBytes + (info.fWidth * bytesPerPixel) More...
 
bool getPixels (const SkImageInfo &info, void *pixels, size_t rowBytes)
 Simplified version of getPixels() that asserts that info is NOT kIndex8_SkColorType and uses the default Options.
 
bool queryYUV8 (SkYUVSizeInfo *sizeInfo, SkYUVColorSpace *colorSpace) const
 If decoding to YUV is supported, this returns true. More...
 
bool getYUV8Planes (const SkYUVSizeInfo &sizeInfo, void *planes[3])
 Returns true on success and false on failure. More...
 
GrTexturegenerateTexture (GrContext *, const SkIRect *subset=nullptr)
 If the generator can natively/efficiently return its pixels as a GPU image (backed by a texture) this will return that image. More...
 
bool computeScaledDimensions (SkScalar scale, SupportedSizes *)
 Some generators can efficiently scale their contents. More...
 
bool generateScaledPixels (const SkISize &scaledSize, const SkIPoint &subsetOrigin, const SkPixmap &subsetPixels)
 Scale the generator's pixels to fit into scaledSize. More...
 
bool generateScaledPixels (const SkPixmap &scaledPixels)
 
bool tryGenerateBitmap (SkBitmap *bm)
 
bool tryGenerateBitmap (SkBitmap *bm, const SkImageInfo &info, SkBitmap::Allocator *allocator)
 
void generateBitmap (SkBitmap *bm)
 
void generateBitmap (SkBitmap *bm, const SkImageInfo &info)
 

Static Public Member Functions

static SkImageGeneratorNewFromEncoded (SkData *)
 If the default image decoder system can interpret the specified (encoded) data, then this returns a new ImageGenerator for it. More...
 
static SkImageGeneratorNewFromPicture (const SkISize &, const SkPicture *, const SkMatrix *, const SkPaint *)
 Return a new image generator backed by the specified picture. More...
 

Protected Types

enum  { kNeedNewImageUniqueID = 0 }
 

Protected Member Functions

 SkImageGenerator (const SkImageInfo &info, uint32_t uniqueId=kNeedNewImageUniqueID)
 
virtual SkDataonRefEncodedData (SK_REFENCODEDDATA_CTXPARAM)
 
virtual bool onGetPixels (const SkImageInfo &info, void *pixels, size_t rowBytes, SkPMColor ctable[], int *ctableCount)
 
virtual bool onQueryYUV8 (SkYUVSizeInfo *, SkYUVColorSpace *) const
 
virtual bool onGetYUV8Planes (const SkYUVSizeInfo &, void *[3])
 
virtual GrTextureonGenerateTexture (GrContext *, const SkIRect *)
 
virtual bool onComputeScaledDimensions (SkScalar, SupportedSizes *)
 
virtual bool onGenerateScaledPixels (const SkISize &, const SkIPoint &, const SkPixmap &)
 
bool tryGenerateBitmap (SkBitmap *bm, const SkImageInfo *optionalInfo, SkBitmap::Allocator *)
 

Static Private Member Functions

static SkImageGeneratorNewFromEncodedImpl (SkData *)
 

Private Attributes

const SkImageInfo fInfo
 
const uint32_t fUniqueID
 

Detailed Description

An interface that allows a purgeable PixelRef (such as a SkDiscardablePixelRef) to decode and re-decode an image as needed.

Member Function Documentation

bool SkImageGenerator::computeScaledDimensions ( SkScalar  scale,
SupportedSizes  
)

Some generators can efficiently scale their contents.

If this is supported, the generator may only support certain scaled dimensions. Call this with the desired scale factor, and it will return true if scaling is supported, and in supportedSizes[] it will return the nearest supported dimensions.

If no native scaling is supported, or scale is invalid (e.g. scale <= 0 || scale > 1) this will return false, and the supportedsizes will be undefined.

bool SkImageGenerator::generateScaledPixels ( const SkISize scaledSize,
const SkIPoint subsetOrigin,
const SkPixmap subsetPixels 
)

Scale the generator's pixels to fit into scaledSize.

This routine also support retrieving only a subset of the pixels. That subset is specified by the following rectangle (in the scaled space):

subset = SkIRect::MakeXYWH(subsetOrigin.x(), subsetOrigin.y(),
                           subsetPixels.width(), subsetPixels.height())

If subset is not contained inside the scaledSize, this returns false.

whole = SkIRect::MakeWH(scaledSize.width(), scaledSize.height())
if (!whole.contains(subset)) {
    return false;
}

If the requested colortype/alphatype in pixels is not supported, or the requested scaledSize is not supported, or the generator encounters an error, this returns false.

GrTexture* SkImageGenerator::generateTexture ( GrContext ,
const SkIRect subset = nullptr 
)

If the generator can natively/efficiently return its pixels as a GPU image (backed by a texture) this will return that image.

If not, this will return NULL.

Regarding the GrContext parameter:

The caller may pass NULL for the context. In that case the generator may assume that its internal context is current. If it has no internal context, then it should just return null.

If the caller passes a non-null context, then the generator should only succeed if:

  • it has no intrinsic context, and will use the caller's
  • its internal context is the same
  • it can somehow convert its texture into one that is valid for the provided context.

Regarding the GrTextureParams parameter:

If the context (the provided one or the generator's intrinsic one) determines that to support the specified usage, it must return a different sized texture it may, so the caller must inspect the texture's width/height and compare them to the generator's getInfo() width/height. For readback usage use GrTextureParams::ClampNoFilter()

bool SkImageGenerator::getPixels ( const SkImageInfo info,
void *  pixels,
size_t  rowBytes,
SkPMColor  ctable[],
int *  ctableCount 
)

Decode into the given pixels, a block of memory of size at least (info.fHeight - 1) * rowBytes + (info.fWidth * bytesPerPixel)

Repeated calls to this function should give the same results, allowing the PixelRef to be immutable.

Parameters
infoA description of the format (config, size) expected by the caller. This can simply be identical to the info returned by getInfo().

This contract also allows the caller to specify different output-configs, which the implementation can decide to support or not.

A size that does not match getInfo() implies a request to scale. If the generator cannot perform this scale, it will return kInvalidScale.

If info is kIndex8_SkColorType, then the caller must provide storage for up to 256 SkPMColor values in ctable. On success the generator must copy N colors into that storage, (where N is the logical number of table entries) and set ctableCount to N.

If info is not kIndex8_SkColorType, then the last two parameters may be NULL. If ctableCount is not null, it will be set to 0.

Returns
true on success.
bool SkImageGenerator::getYUV8Planes ( const SkYUVSizeInfo sizeInfo,
void *  planes[3] 
)

Returns true on success and false on failure.

This always attempts to perform a full decode. If the client only wants size, it should call queryYUV8().

Parameters
sizeInfoNeeds to exactly match the values returned by the query, except the WidthBytes may be larger than the recommendation (but not smaller).
planesMemory for each of the Y, U, and V planes.
static SkImageGenerator* SkImageGenerator::NewFromEncoded ( SkData )
static

If the default image decoder system can interpret the specified (encoded) data, then this returns a new ImageGenerator for it.

Otherwise this returns NULL. Either way the caller is still responsible for managing their ownership of the data.

static SkImageGenerator* SkImageGenerator::NewFromPicture ( const SkISize ,
const SkPicture ,
const SkMatrix ,
const SkPaint  
)
static

Return a new image generator backed by the specified picture.

If the size is empty or the picture is NULL, this returns NULL. The optional matrix and paint arguments are passed to drawPicture() at rasterization time.

bool SkImageGenerator::queryYUV8 ( SkYUVSizeInfo sizeInfo,
SkYUVColorSpace *  colorSpace 
) const

If decoding to YUV is supported, this returns true.

Otherwise, this returns false and does not modify any of the parameters.

Parameters
sizeInfoOutput parameter indicating the sizes and required allocation widths of the Y, U, and V planes.
colorSpaceOutput parameter.
SkData* SkImageGenerator::refEncodedData ( GrContext ctx = nullptr)
inline

Return a ref to the encoded (i.e.

compressed) representation, of this data. If the GrContext is non-null, then the caller is only interested in gpu-specific formats, so the impl may return null even if they have encoded data, assuming they know it is not suitable for the gpu.

If non-NULL is returned, the caller is responsible for calling unref() on the data when it is finished.


The documentation for this class was generated from the following file: