From 95a7b76a44edd2f25423a4d395df553b80fe06d7 Mon Sep 17 00:00:00 2001 From: Bryce Thomas Date: Fri, 2 Mar 2018 13:54:21 -0800 Subject: dm: support printing specific page of mskp to SVG Currently with dm, it's possible to convert an .mskp to a multi-page PDF as follows: out/Release/dm --src mskp --mskps /tmp/filename.mskp -w /tmp \ --config pdf --verbose The SVG equivalent partially works, although only outputs the first page: out/Release/dm --src mskp --mskps /tmp/filename.mskp -w /tmp \ --config svg --verbose This CL adds support for passing extended options to SVG. Specifically, the 'page' option , which now determines which page of the source mskp gets converted to the SVG output. The new syntax is as follows: out/Release/dm --src mskp --mskps /tmp/filename.mskp -w /tmp \ --config svg[page=2] --verbose The `[key=value]` syntax is the same extended options syntax currently used by dm with --config gpu, e.g. `gpu[api=gl,color=8888]`. BUG=skia:7601 Change-Id: I3523d79b1cdbbba9e80fd46501331877091bdead Reviewed-on: https://skia-review.googlesource.com/105404 Commit-Queue: Mike Klein Reviewed-by: Mike Klein Reviewed-by: Mike Klein --- dm/DM.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dm/DM.cpp') diff --git a/dm/DM.cpp b/dm/DM.cpp index 1d3d815647..972c70d484 100644 --- a/dm/DM.cpp +++ b/dm/DM.cpp @@ -899,6 +899,10 @@ static Sink* create_sink(const GrContextOptions& grCtxOptions, const SkCommandLi } } #endif + if (const SkCommandLineConfigSvg* svgConfig = config->asConfigSvg()) { + int pageIndex = svgConfig->getPageIndex(); + return new SVGSink(pageIndex); + } #define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink(__VA_ARGS__); } -- cgit v1.2.3