Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(438)

Unified Diff: experimental/tools/coreGraphicsPdf2png.cpp

Issue 1131643004: mac: pdf2png (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gyp/experimental.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/tools/coreGraphicsPdf2png.cpp
diff --git a/experimental/tools/coreGraphicsPdf2png.cpp b/experimental/tools/coreGraphicsPdf2png.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..98c5b286c8a5d25d4b54027e2996eb2564fab33b
--- /dev/null
+++ b/experimental/tools/coreGraphicsPdf2png.cpp
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include <stdio.h>
+
+#include "SkBitmap.h"
+#include "SkCGUtils.h"
+#include "SkImageEncoder.h"
+#include "SkStream.h"
+
+class StdOutWStream : public SkWStream {
+public:
+ StdOutWStream() : fBytesWritten(0) {}
+ bool write(const void* buffer, size_t size) final {
+ fBytesWritten += size;
+ return size == fwrite(buffer, 1, size, stdout);
+ }
+ size_t bytesWritten() const final { return fBytesWritten; }
+
+private:
+ size_t fBytesWritten;
+};
+
+static SkStreamAsset* open_for_reading(const char* path) {
+ if (!path || !path[0] || 0 == strcmp(path, "-")) {
+ return new SkFILEStream(stdin, SkFILEStream::kCallerRetains_Ownership);
+ }
+ return SkStream::NewFromFile(path);
+}
+
+static SkWStream* open_for_writing(const char* path) {
+ if (!path || !path[0] || 0 == strcmp(path, "-")) {
+ return new StdOutWStream;
+ }
+ return new SkFILEWStream(path);
+}
+
+static bool to_png(SkWStream* o, const SkBitmap& bm) {
+ return SkImageEncoder::EncodeStream(o, bm, SkImageEncoder::kPNG_Type, 100);
+}
+
+// Note: I could implement this using only MacOS|CG API calls, but
+// since most of this is already done in Skia, here it is.
+int main(int argc, char** argv) {
+ SkBitmap bm;
+ SkAutoTDelete<SkStream> in(open_for_reading(argc > 1 ? argv[1] : NULL));
+ SkAutoTDelete<SkWStream> out(open_for_writing(argc > 2 ? argv[2] : NULL));
+ if (SkPDFDocumentToBitmap(in.detach(), &bm) && to_png(out, bm)) {
+ return 0;
+ } else {
+ return 1;
+ }
+}
« no previous file with comments | « no previous file | gyp/experimental.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698