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.
|
|
|
|
*/
|
2014-12-19 20:26:07 +00:00
|
|
|
|
2009-01-06 20:16:26 +00:00
|
|
|
#ifndef SkImageEncoder_DEFINED
|
|
|
|
#define SkImageEncoder_DEFINED
|
|
|
|
|
2016-11-23 15:55:18 +00:00
|
|
|
#include "SkBitmap.h"
|
2017-12-08 21:20:58 +00:00
|
|
|
#include "SkData.h"
|
2016-11-23 15:55:18 +00:00
|
|
|
#include "SkEncodedImageFormat.h"
|
|
|
|
#include "SkStream.h"
|
2009-01-06 20:16:26 +00:00
|
|
|
|
2016-11-23 15:55:18 +00:00
|
|
|
/**
|
|
|
|
* Encode SkPixmap in the given binary image format.
|
|
|
|
*
|
|
|
|
* @param dst results are written to this stream.
|
|
|
|
* @param src source pixels.
|
|
|
|
* @param format image format, not all formats are supported.
|
2017-05-16 21:06:52 +00:00
|
|
|
* @param quality range from 0-100, this is supported by jpeg and webp.
|
|
|
|
* higher values correspond to improved visual quality, but less compression.
|
2016-11-23 15:55:18 +00:00
|
|
|
*
|
|
|
|
* @return false iff input is bad or format is unsupported.
|
|
|
|
*
|
|
|
|
* Will always return false if Skia is compiled without image
|
|
|
|
* encoders.
|
|
|
|
*
|
2017-05-16 21:06:52 +00:00
|
|
|
* Note that webp encodes will use webp lossy compression.
|
|
|
|
*
|
2016-11-23 15:55:18 +00:00
|
|
|
* For examples of encoding an image to a file or to a block of memory,
|
|
|
|
* see tools/sk_tool_utils.h.
|
|
|
|
*/
|
|
|
|
SK_API bool SkEncodeImage(SkWStream* dst, const SkPixmap& src,
|
|
|
|
SkEncodedImageFormat format, int quality);
|
2017-12-08 21:20:58 +00:00
|
|
|
|
2016-11-23 15:55:18 +00:00
|
|
|
/**
|
|
|
|
* The following helper function wraps SkEncodeImage().
|
|
|
|
*/
|
|
|
|
inline bool SkEncodeImage(SkWStream* dst, const SkBitmap& src, SkEncodedImageFormat f, int q) {
|
|
|
|
SkPixmap pixmap;
|
|
|
|
return src.peekPixels(&pixmap) && SkEncodeImage(dst, pixmap, f, q);
|
|
|
|
}
|
|
|
|
|
2017-12-08 21:20:58 +00:00
|
|
|
/**
|
|
|
|
* Encode SkPixmap in the given binary image format.
|
|
|
|
*
|
|
|
|
* @param src source pixels.
|
|
|
|
* @param format image format, not all formats are supported.
|
|
|
|
* @param quality range from 0-100, this is supported by jpeg and webp.
|
|
|
|
* higher values correspond to improved visual quality, but less compression.
|
|
|
|
*
|
|
|
|
* @return encoded data or nullptr if input is bad or format is unsupported.
|
|
|
|
*
|
|
|
|
* Will always return nullptr if Skia is compiled without image
|
|
|
|
* encoders.
|
|
|
|
*
|
|
|
|
* Note that webp encodes will use webp lossy compression.
|
|
|
|
*/
|
|
|
|
SK_API sk_sp<SkData> SkEncodePixmap(const SkPixmap& src, SkEncodedImageFormat format, int quality);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper that extracts the pixmap from the bitmap, and then calls SkEncodePixmap()
|
|
|
|
*/
|
|
|
|
SK_API sk_sp<SkData> SkEncodeBitmap(const SkBitmap& src, SkEncodedImageFormat format, int quality);
|
|
|
|
|
2016-11-23 15:55:18 +00:00
|
|
|
#endif // SkImageEncoder_DEFINED
|