skia2/gm/encode.cpp
Leon Scroggins III 0098ccbab5 Remove unnecessary sk_tool_utils::EncodeImageToData
This template is only used in practice for SkBitmaps. There is already a
public API that does the same thing, so there's no need for this one.

Change-Id: I20b10aa8bc87a56face947689e1f0eaf4c3cc4e8
Reviewed-on: https://skia-review.googlesource.com/156540
Reviewed-by: Hal Canary <halcanary@google.com>
Auto-Submit: Leon Scroggins <scroggo@google.com>
Commit-Queue: Leon Scroggins <scroggo@google.com>
2018-09-25 12:02:26 +00:00

76 lines
2.0 KiB
C++

/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm.h"
#include "SkCanvas.h"
#include "SkData.h"
#include "SkImage.h"
#include "SkImageEncoder.h"
#include "Resources.h"
namespace skiagm {
class EncodeGM : public GM {
public:
EncodeGM() {}
protected:
SkString onShortName() override {
return SkString("encode");
}
SkISize onISize() override {
return SkISize::Make(1024, 600);
}
void onDraw(SkCanvas* canvas) override {
SkBitmap orig;
GetResourceAsBitmap("images/mandrill_512_q075.jpg", &orig);
auto pngData = SkEncodeBitmap(orig, SkEncodedImageFormat::kPNG, 100);
auto jpgData = SkEncodeBitmap(orig, SkEncodedImageFormat::kJPEG, 100);
sk_sp<SkImage> pngImage = SkImage::MakeFromEncoded(pngData);
sk_sp<SkImage> jpgImage = SkImage::MakeFromEncoded(jpgData);
canvas->drawImage(pngImage.get(), 0.0f, 0.0f);
canvas->drawImage(jpgImage.get(), 512.0f, 0.0f);
const char text[] = "Images should look identical.";
canvas->drawText(text, sizeof(text) - 1, 450.0f, 550.0f, SkPaint());
}
private:
typedef GM INHERITED;
};
DEF_GM( return new EncodeGM; )
}
///////////
#if 0
DEF_SIMPLE_GM(jpeg_orientation, canvas, 1000, 1000) {
static sk_sp<SkImage> imgs[8];
if (!imgs[0]) {
for (int i = 0; i < 8; ++i) {
SkString path;
path.printf("/skia/orientation/Landscape_%d.jpg", i + 1);
auto stream = SkStream::MakeFromFile(path.c_str());
auto data = SkData::MakeFromStream(stream.get(), stream->getLength());
imgs[i] = SkImage::MakeFromEncoded(data, nullptr);
}
}
canvas->scale(0.25, 0.25);
for (int i = 0; i < 8; ++i) {
SkImage* img = imgs[i].get();
canvas->drawImage(img, 0, 0, nullptr);
canvas->translate(0, img->height());
if (i == 3) {
canvas->translate(img->width(), -4*img->height());
}
}
}
#endif