What's New:Reading comments from a metafile. Small example how to read comments:WmfMetafile wfile = new WmfMetafile(file);MetafileComment[] comments = wfile.getComments();for(int i = 0; i < comments.length; i++) { System.out.println("comment " +
Read More