OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "GrSurface.h" | 8 #include "GrSurface.h" |
9 | 9 |
10 #include "GrDrawState.h" | |
11 #include "SkBitmap.h" | |
12 #include "SkImageEncoder.h" | |
13 | |
10 SK_DEFINE_INST_COUNT(GrSurface) | 14 SK_DEFINE_INST_COUNT(GrSurface) |
15 | |
16 bool GrSurface::savePixels(const char* filename) { | |
17 SkBitmap bm; | |
18 bm.setConfig(SkBitmap::kARGB_8888_Config, this->width(), this->height()); | |
19 bm.allocPixels(); | |
20 | |
21 bool result = readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPi xelConfig, | |
22 bm.getPixels()); | |
23 if (!result) { | |
24 SkDebugf("------ failed to read pixels for %s\n", filename); | |
25 return false; | |
26 } | |
27 | |
28 // remove any previous version of this file | |
29 remove(filename); | |
bsalomon
2013/09/30 17:39:04
is this cross-platform?
jvanverth1
2013/09/30 17:46:35
It's part of the C standard, so it should be.
| |
30 | |
31 if (!SkImageEncoder::EncodeFile(filename, bm, SkImageEncoder::kPNG_Type, 100 )) { | |
32 SkDebugf("------ failed to encode %s\n", filename); | |
33 remove(filename); // remove any partial file | |
34 return false; | |
35 } | |
36 | |
37 return true; | |
38 } | |
OLD | NEW |