1// 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 "tools/fiddle/examples.h" 4// HASH=894f732ed6409b1f392bc5481421d0e9 5REG_FIDDLE(Image_MakeFromEncoded, 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 16