blob: dfd49887e57bff01c6316518833334cc1532513f [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#include "fiddle/examples.h"
4// HASH=894f732ed6409b1f392bc5481421d0e9
5REG_FIDDLE(Image_005, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 int x = 0;
8 for (int quality : { 100, 50, 10, 1} ) {
9 sk_sp<SkData> encodedData = image->encodeToData(SkEncodedImageFormat::kJPEG, quality);
10 sk_sp<SkImage> image = SkImage::MakeFromEncoded(encodedData);
11 canvas->drawImage(image, x, 0);
12 x += 64;
13 }
14}
15} // END FIDDLE