The problem is in net.sf.sdedit.taglet.SequenceTaglet method generateOutput.
The file path and type arguments are switched: device.saveImage(imageFile.getAbsolutePath(),"PNG");
it should be device.saveImage("PNG", imageFile.getAbsolutePath());
The taglet now produces inline SVG.
Log in to post a comment.
The taglet now produces inline SVG.