blob: fed95f232fe4b18d34ef4f6d7844346aacc44eba [file] [log] [blame]
robertphillips@google.com7d501ab2012-06-21 21:09:06 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrSurface.h"
9
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000010#include "SkBitmap.h"
11#include "SkImageEncoder.h"
bungeman@google.comfab44db2013-10-11 18:50:45 +000012#include <stdio.h>
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000013
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000014bool GrSurface::savePixels(const char* filename) {
15 SkBitmap bm;
16 bm.setConfig(SkBitmap::kARGB_8888_Config, this->width(), this->height());
17 bm.allocPixels();
18
skia.committer@gmail.com1d3bfdc2013-10-01 07:01:46 +000019 bool result = readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000020 bm.getPixels());
21 if (!result) {
22 SkDebugf("------ failed to read pixels for %s\n", filename);
23 return false;
24 }
skia.committer@gmail.com1d3bfdc2013-10-01 07:01:46 +000025
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000026 // remove any previous version of this file
27 remove(filename);
28
29 if (!SkImageEncoder::EncodeFile(filename, bm, SkImageEncoder::kPNG_Type, 100)) {
30 SkDebugf("------ failed to encode %s\n", filename);
31 remove(filename); // remove any partial file
32 return false;
33 }
34
35 return true;
36}