From c910445634b72de548b54fd4a80b06d4b8889fb1 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Thu, 21 Apr 2016 15:10:25 -0400 Subject: [PATCH] quiet flag for wkhtmltoimage --- src/backends/web.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/web.jl b/src/backends/web.jl index 9500c76e..abb7805d 100644 --- a/src/backends/web.jl +++ b/src/backends/web.jl @@ -42,7 +42,7 @@ end # uses wkhtmltopdf/wkhtmltoimage: http://wkhtmltopdf.org/downloads.html function html_to_png(html_fn, png_fn, w, h) - run(`wkhtmltoimage --width $w --height $h --disable-smart-width $html_fn $png_fn`) + run(`wkhtmltoimage -q --width $w --height $h --disable-smart-width $html_fn $png_fn`) end function writemime_png_from_html(io::IO, plt::AbstractPlot)