blob: b415219564c8383645c403ff4872217154f5552b [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkDevice.h"
#include "SkGraphics.h"
#include "SkImageEncoder.h"
#include "SkPicture.h"
#include "SkPicturePlayback.h"
#include "SkPictureRecord.h"
#include "SkStream.h"
static void usage() {
SkDebugf("Usage: filter -i inFile [-o outFile] [-t textureDir] [-h|--help]");
SkDebugf("\n\n");
SkDebugf(" -i inFile : file to file.\n");
SkDebugf(" -o outFile : result of filtering.\n");
SkDebugf(" -t textureDir : directory in which to place textures.\n");
SkDebugf(" -h|--help : Show this help message.\n");
}
// SkFilterRecord allows the filter to manipulate the read in SkPicture
class SkFilterRecord : public SkPictureRecord {
public:
SkFilterRecord(uint32_t recordFlags, SkDevice* device)
: INHERITED(recordFlags, device) {
}
void saveImages(const SkString& path) {
SkTRefArray<SkBitmap>* bitmaps = fBitmapHeap->extractBitmaps();
if (NULL != bitmaps) {
for (int i = 0; i < bitmaps->count(); ++i) {
SkString filename(path);
if (!path.endsWith("\\")) {
filename.append("\\");
}
filename.append("image");
filename.appendS32(i);
filename.append(".png");
SkImageEncoder::EncodeFile(filename.c_str(), (*bitmaps)[i],
SkImageEncoder::kPNG_Type, 0);
}
}
bitmaps->unref();
}
private:
typedef SkPictureRecord INHERITED;
};
// This function is not marked as 'static' so it can be referenced externally
// in the iOS build.
int tool_main(int argc, char** argv) {
SkGraphics::Init();
if (argc < 3) {
usage();
return -1;
}
SkString inFile, outFile, textureDir;
char* const* stop = argv + argc;
for (++argv; argv < stop; ++argv) {
if (strcmp(*argv, "-i") == 0) {
argv++;
if (argv < stop && **argv) {
inFile.set(*argv);
} else {
SkDebugf("missing arg for -i\n");
usage();
return -1;
}
} else if (strcmp(*argv, "-o") == 0) {
argv++;
if (argv < stop && **argv) {
outFile.set(*argv);
} else {
SkDebugf("missing arg for -o\n");
usage();
return -1;
}
} else if (strcmp(*argv, "-t") == 0) {
argv++;
if (argv < stop && **argv) {
textureDir.set(*argv);
} else {
SkDebugf("missing arg for -t\n");
usage();
return -1;
}
} else if (strcmp(*argv, "--help") == 0 || strcmp(*argv, "-h") == 0) {
usage();
return 0;
} else {
SkDebugf("unknown arg %s\n", *argv);
usage();
return -1;
}
}
if (inFile.isEmpty()) {
usage();
return -1;
}
SkPicture* inPicture = NULL;
SkFILEStream inStream(inFile.c_str());
if (inStream.isValid()) {
inPicture = SkNEW_ARGS(SkPicture, (&inStream));
}
if (NULL == inPicture) {
SkDebugf("Could not read file %s\n", inFile.c_str());
return -1;
}
if (!outFile.isEmpty()) {
// Playback the read in picture to another picture to allow whatever
// translation occurs inside Skia to occur
SkPicture outPicture;
inPicture->draw(outPicture.beginRecording(inPicture->width(), inPicture->height()));
outPicture.endRecording();
SkFILEWStream outStream(outFile.c_str());
outPicture.serialize(&outStream);
}
if (!textureDir.isEmpty()) {
SkBitmap bm;
bm.setConfig(SkBitmap::kNo_Config, inPicture->width(), inPicture->height());
SkAutoTUnref<SkDevice> dev(SkNEW_ARGS(SkDevice, (bm)));
SkFilterRecord filterRecord(0, dev);
filterRecord.beginRecording();
inPicture->draw(&filterRecord);
filterRecord.endRecording();
filterRecord.saveImages(textureDir);
}
SkGraphics::Term();
return 0;
}
#if !defined SK_BUILD_FOR_IOS
int main(int argc, char * const argv[]) {
return tool_main(argc, (char**) argv);
}
#endif