2930313233343536373839
protected void writeInput(HttpURLConnection connection) throws Exception { OutputStream out = null; try { out = connection.getOutputStream(); new PNGRenderer().renderPNG((Svg) input, out); } finally { if (out != null) out.close(); }