2012-06-22 18:55:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "picture_utils.h"
|
|
|
|
#include "SkBitmap.h"
|
2014-05-15 15:10:48 +00:00
|
|
|
#include "SkColorPriv.h"
|
2016-04-19 16:18:11 +00:00
|
|
|
#include "SkHalf.h"
|
2014-05-15 15:10:48 +00:00
|
|
|
#include "SkImageEncoder.h"
|
|
|
|
#include "SkOSFile.h"
|
2016-11-07 23:05:29 +00:00
|
|
|
#include "SkOSPath.h"
|
2016-04-19 16:18:11 +00:00
|
|
|
#include "SkPM4fPriv.h"
|
2012-06-22 18:55:55 +00:00
|
|
|
#include "SkPicture.h"
|
|
|
|
#include "SkStream.h"
|
2014-05-15 15:10:48 +00:00
|
|
|
#include "SkString.h"
|
2017-06-12 12:59:16 +00:00
|
|
|
#include "SkRasterPipeline.h"
|
2012-06-22 18:55:55 +00:00
|
|
|
|
2016-11-23 15:55:18 +00:00
|
|
|
#include "sk_tool_utils.h"
|
|
|
|
|
2012-06-22 18:55:55 +00:00
|
|
|
namespace sk_tools {
|
2012-08-21 19:05:08 +00:00
|
|
|
void force_all_opaque(const SkBitmap& bitmap) {
|
2014-06-14 12:30:20 +00:00
|
|
|
SkASSERT(kN32_SkColorType == bitmap.colorType());
|
2016-07-25 15:29:10 +00:00
|
|
|
if (kN32_SkColorType == bitmap.colorType()) {
|
2012-08-21 19:05:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int y = 0; y < bitmap.height(); y++) {
|
|
|
|
for (int x = 0; x < bitmap.width(); x++) {
|
|
|
|
*bitmap.getAddr32(x, y) |= (SK_A32_MASK << SK_A32_SHIFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-22 18:55:55 +00:00
|
|
|
|
2014-04-10 15:39:02 +00:00
|
|
|
void replace_char(SkString* str, const char oldChar, const char newChar) {
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == str) {
|
2014-04-10 15:39:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < str->size(); ++i) {
|
|
|
|
if (oldChar == str->operator[](i)) {
|
|
|
|
str->operator[](i) = newChar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-31 16:15:22 +00:00
|
|
|
bool is_percentage(const char* const string) {
|
2012-08-01 17:53:29 +00:00
|
|
|
SkString skString(string);
|
|
|
|
return skString.endsWith("%");
|
|
|
|
}
|
|
|
|
|
2012-06-22 18:55:55 +00:00
|
|
|
void setup_bitmap(SkBitmap* bitmap, int width, int height) {
|
2014-06-10 02:52:07 +00:00
|
|
|
bitmap->allocN32Pixels(width, height);
|
2012-12-06 21:47:40 +00:00
|
|
|
bitmap->eraseColor(SK_ColorTRANSPARENT);
|
2012-06-22 18:55:55 +00:00
|
|
|
}
|
2014-05-15 15:10:48 +00:00
|
|
|
|
|
|
|
bool write_bitmap_to_disk(const SkBitmap& bm, const SkString& dirPath,
|
|
|
|
const char *subdirOrNull, const SkString& baseName) {
|
|
|
|
SkString partialPath;
|
|
|
|
if (subdirOrNull) {
|
2014-07-29 02:26:58 +00:00
|
|
|
partialPath = SkOSPath::Join(dirPath.c_str(), subdirOrNull);
|
2014-05-15 15:10:48 +00:00
|
|
|
sk_mkdir(partialPath.c_str());
|
|
|
|
} else {
|
|
|
|
partialPath.set(dirPath);
|
|
|
|
}
|
2014-07-29 02:26:58 +00:00
|
|
|
SkString fullPath = SkOSPath::Join(partialPath.c_str(), baseName.c_str());
|
2016-11-23 15:55:18 +00:00
|
|
|
if (sk_tool_utils::EncodeImageToFile(fullPath.c_str(), bm, SkEncodedImageFormat::kPNG, 100)) {
|
2014-05-15 15:10:48 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
SkDebugf("Failed to write the bitmap to %s.\n", fullPath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-19 16:18:11 +00:00
|
|
|
sk_sp<SkData> encode_bitmap_for_png(SkBitmap bitmap) {
|
|
|
|
const int w = bitmap.width(),
|
2017-06-12 12:59:16 +00:00
|
|
|
h = bitmap.height();
|
|
|
|
|
2016-04-19 16:18:11 +00:00
|
|
|
// PNG wants unpremultiplied 8-bit RGBA pixels (16-bit could work fine too).
|
|
|
|
// We leave the gamma of these bytes unspecified, to continue the status quo,
|
|
|
|
// which we think generally is to interpret them as sRGB.
|
|
|
|
|
|
|
|
SkAutoTMalloc<uint32_t> rgba(w*h);
|
|
|
|
|
2017-06-12 12:59:16 +00:00
|
|
|
const void* src = bitmap.getPixels();
|
|
|
|
uint32_t* dst = rgba.get();
|
2016-04-19 16:18:11 +00:00
|
|
|
|
2017-06-12 12:59:16 +00:00
|
|
|
SkRasterPipeline_<256> p;
|
|
|
|
switch (bitmap.colorType()) {
|
|
|
|
case kRGBA_F16_SkColorType: p.append(SkRasterPipeline::load_f16, &src); break;
|
|
|
|
case kRGBA_8888_SkColorType:
|
|
|
|
case kBGRA_8888_SkColorType: p.append(SkRasterPipeline::load_8888, &src); break;
|
|
|
|
case kRGB_565_SkColorType: p.append(SkRasterPipeline::load_565, &src); break;
|
|
|
|
default: SkASSERT(false); // DM doesn't support any other formats, does it?
|
|
|
|
}
|
|
|
|
if (bitmap.info().gammaCloseToSRGB()) {
|
2017-06-12 15:18:59 +00:00
|
|
|
p.append_from_srgb(kUnpremul_SkAlphaType);
|
2017-06-12 12:59:16 +00:00
|
|
|
}
|
|
|
|
if (bitmap.colorType() == kBGRA_8888_SkColorType) {
|
|
|
|
p.append(SkRasterPipeline::swap_rb);
|
|
|
|
}
|
|
|
|
p.append(SkRasterPipeline::unpremul);
|
|
|
|
p.append(SkRasterPipeline::clamp_0);
|
|
|
|
p.append(SkRasterPipeline::clamp_1);
|
|
|
|
if (bitmap.info().colorSpace()) {
|
|
|
|
// We leave legacy modes as-is. They're already sRGB encoded (kind of).
|
|
|
|
p.append(SkRasterPipeline::to_srgb);
|
|
|
|
}
|
|
|
|
p.append(SkRasterPipeline::store_8888, &dst);
|
2016-04-19 16:18:11 +00:00
|
|
|
|
2017-06-12 12:59:16 +00:00
|
|
|
auto run = p.compile();
|
|
|
|
for (int y = 0; y < h; y++) {
|
|
|
|
run(0,y, w);
|
|
|
|
src = SkTAddOffset<const void>(src, bitmap.rowBytes());
|
|
|
|
dst += w;
|
2016-04-19 16:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return SkData::MakeFromMalloc(rgba.release(), w*h*sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
|
2014-05-15 15:10:48 +00:00
|
|
|
} // namespace sk_tools
|