public static SketchDocument importSVG(URL url) throws Exception { SketchDocument sdoc = importSVG(url.openStream()); // sdoc.setFile(file); sdoc.setTitle(url.getPath() + ""); sdoc.setCurrentPage(0); sdoc.setDirty(false); return sdoc; }
public static SketchDocument importSVG(File file) throws Exception { SketchDocument sdoc = importSVG(new FileInputStream(file)); // sdoc.setFile(file); sdoc.setTitle(file.getName() + ""); sdoc.setCurrentPage(0); sdoc.setDirty(false); return sdoc; }