2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2009-01-06 20:16:26 +00:00
|
|
|
#ifndef SkImageEncoder_DEFINED
|
|
|
|
#define SkImageEncoder_DEFINED
|
|
|
|
|
|
|
|
#include "SkTypes.h"
|
2013-09-04 17:20:18 +00:00
|
|
|
#include "SkTRegistry.h"
|
2009-01-06 20:16:26 +00:00
|
|
|
|
|
|
|
class SkBitmap;
|
2013-05-20 16:33:41 +00:00
|
|
|
class SkData;
|
2009-01-06 20:16:26 +00:00
|
|
|
class SkWStream;
|
|
|
|
|
|
|
|
class SkImageEncoder {
|
|
|
|
public:
|
|
|
|
enum Type {
|
2013-04-25 17:33:51 +00:00
|
|
|
kUnknown_Type,
|
2013-04-17 21:07:55 +00:00
|
|
|
kBMP_Type,
|
|
|
|
kGIF_Type,
|
|
|
|
kICO_Type,
|
2009-01-06 20:16:26 +00:00
|
|
|
kJPEG_Type,
|
2013-03-14 14:42:18 +00:00
|
|
|
kPNG_Type,
|
2013-04-17 21:07:55 +00:00
|
|
|
kWBMP_Type,
|
|
|
|
kWEBP_Type,
|
2014-06-06 13:16:28 +00:00
|
|
|
kKTX_Type,
|
2009-01-06 20:16:26 +00:00
|
|
|
};
|
|
|
|
static SkImageEncoder* Create(Type);
|
|
|
|
|
|
|
|
virtual ~SkImageEncoder();
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2009-01-06 20:16:26 +00:00
|
|
|
/* Quality ranges from 0..100 */
|
|
|
|
enum {
|
|
|
|
kDefaultQuality = 80
|
|
|
|
};
|
|
|
|
|
2013-05-20 16:33:41 +00:00
|
|
|
/**
|
|
|
|
* Encode bitmap 'bm', returning the results in an SkData, at quality level
|
|
|
|
* 'quality' (which can be in range 0-100). If the bitmap cannot be
|
|
|
|
* encoded, return null. On success, the caller is responsible for
|
|
|
|
* calling unref() on the data when they are finished.
|
|
|
|
*/
|
|
|
|
SkData* encodeData(const SkBitmap&, int quality);
|
|
|
|
|
2012-11-16 18:44:18 +00:00
|
|
|
/**
|
|
|
|
* Encode bitmap 'bm' in the desired format, writing results to
|
|
|
|
* file 'file', at quality level 'quality' (which can be in range
|
2013-05-20 16:33:41 +00:00
|
|
|
* 0-100). Returns false on failure.
|
2012-11-16 18:44:18 +00:00
|
|
|
*/
|
|
|
|
bool encodeFile(const char file[], const SkBitmap& bm, int quality);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Encode bitmap 'bm' in the desired format, writing results to
|
|
|
|
* stream 'stream', at quality level 'quality' (which can be in
|
2013-05-20 16:33:41 +00:00
|
|
|
* range 0-100). Returns false on failure.
|
2012-11-16 18:44:18 +00:00
|
|
|
*/
|
|
|
|
bool encodeStream(SkWStream* stream, const SkBitmap& bm, int quality);
|
2009-01-06 20:16:26 +00:00
|
|
|
|
2013-05-20 16:33:41 +00:00
|
|
|
static SkData* EncodeData(const SkBitmap&, Type, int quality);
|
2009-01-06 20:16:26 +00:00
|
|
|
static bool EncodeFile(const char file[], const SkBitmap&, Type,
|
|
|
|
int quality);
|
|
|
|
static bool EncodeStream(SkWStream*, const SkBitmap&, Type,
|
|
|
|
int quality);
|
|
|
|
|
|
|
|
protected:
|
2012-11-16 18:44:18 +00:00
|
|
|
/**
|
|
|
|
* Encode bitmap 'bm' in the desired format, writing results to
|
|
|
|
* stream 'stream', at quality level 'quality' (which can be in
|
|
|
|
* range 0-100).
|
|
|
|
*
|
|
|
|
* This must be overridden by each SkImageEncoder implementation.
|
|
|
|
*/
|
|
|
|
virtual bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) = 0;
|
2009-01-06 20:16:26 +00:00
|
|
|
};
|
|
|
|
|
2012-03-23 18:13:47 +00:00
|
|
|
// This macro declares a global (i.e., non-class owned) creation entry point
|
|
|
|
// for each encoder (e.g., CreateJPEGImageEncoder)
|
|
|
|
#define DECLARE_ENCODER_CREATOR(codec) \
|
|
|
|
SkImageEncoder *Create ## codec ();
|
|
|
|
|
|
|
|
// This macro defines the global creation entry point for each encoder. Each
|
|
|
|
// encoder implementation that registers with the encoder factory must call it.
|
|
|
|
#define DEFINE_ENCODER_CREATOR(codec) \
|
|
|
|
SkImageEncoder *Create ## codec () { \
|
|
|
|
return SkNEW( Sk ## codec ); \
|
|
|
|
}
|
|
|
|
|
|
|
|
// All the encoders known by Skia. Note that, depending on the compiler settings,
|
|
|
|
// not all of these will be available
|
2013-04-23 18:06:23 +00:00
|
|
|
/** An ARGBImageEncoder will always write out
|
|
|
|
* bitmap.width() * bitmap.height() * 4
|
|
|
|
* bytes.
|
|
|
|
*/
|
|
|
|
DECLARE_ENCODER_CREATOR(ARGBImageEncoder);
|
2012-03-23 18:13:47 +00:00
|
|
|
DECLARE_ENCODER_CREATOR(JPEGImageEncoder);
|
|
|
|
DECLARE_ENCODER_CREATOR(PNGImageEncoder);
|
2014-06-06 13:16:28 +00:00
|
|
|
DECLARE_ENCODER_CREATOR(KTXImageEncoder);
|
2013-03-14 14:42:18 +00:00
|
|
|
DECLARE_ENCODER_CREATOR(WEBPImageEncoder);
|
2012-03-23 18:13:47 +00:00
|
|
|
|
2013-09-04 17:20:18 +00:00
|
|
|
// Typedef to make registering encoder callback easier
|
|
|
|
// This has to be defined outside SkImageEncoder. :(
|
|
|
|
typedef SkTRegistry<SkImageEncoder*(*)(SkImageEncoder::Type)> SkImageEncoder_EncodeReg;
|
2009-01-06 20:16:26 +00:00
|
|
|
#endif
|