Skip to content

Commit

Permalink
Fix bug 388: Avoid broken dvisvgm reassign-clippaths optimization.
Browse files Browse the repository at this point in the history
  • Loading branch information
johncbowman committed Jul 30, 2023
1 parent b069d81 commit aa9f81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picture.cc
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ string dvisvgmCommand(mem::vector<string>& cmd, const string& outname)
string libgs=getSetting<string>("libgs");
if(!libgs.empty())
cmd.push_back("--libgs="+libgs);
cmd.push_back("--optimize");
cmd.push_back("--optimize=collapse-groups,group-attributes,remove-clippaths,simplify-text,simplify-transform");
push_split(cmd,getSetting<string>("dvisvgmOptions"));
string outfile=stripDir(outname);
if(!outfile.empty())
Expand Down

0 comments on commit aa9f81b

Please sign in to comment.