gm -w 'directory' now works for recording the master images

git-svn-id: http://skia.googlecode.com/svn/trunk@229 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@android.com 2009-06-21 01:40:31 +00:00
Родитель 8015dd83ae
Коммит 25b0434908
2 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -48,7 +48,7 @@ static SkString make_filename(const char path[], const SkString& name) {
if (filename.size() && filename[filename.size() - 1] != '/') {
filename.append("/");
}
filename.append(name);
filename.appendf("%s.png", name.c_str());
return filename;
}
@ -64,7 +64,6 @@ static const struct {
{ SkBitmap::kARGB_8888_Config, false, "8888" },
{ SkBitmap::kARGB_4444_Config, false, "4444" },
{ SkBitmap::kRGB_565_Config, false, "565" },
{ SkBitmap::kA8_Config, false, "A8" },
};
int main (int argc, char * const argv[]) {
@ -109,7 +108,9 @@ int main (int argc, char * const argv[]) {
if (writePath) {
SkString path = make_filename(writePath, name);
bool success = SkImageEncoder::EncodeFile(path.c_str(), bitmap,
SkBitmap copy;
bitmap.copyTo(&copy, SkBitmap::kARGB_8888_Config);
bool success = SkImageEncoder::EncodeFile(path.c_str(), copy,
SkImageEncoder::kPNG_Type, 100);
if (!success) {
fprintf(stderr, "FAILED to write %s\n", path.c_str());

Просмотреть файл

@ -67,7 +67,7 @@ protected:
return SkString("xfermodes");
}
SkISize onISize() { return make_isize(400, 250); }
SkISize onISize() { return make_isize(640, 380); }
void drawBG(SkCanvas* canvas) {
canvas->drawColor(SK_ColorWHITE);