--image always goes on the FRONT of the equation list

The image is intended to be background, so I want it to be rendered first, with
everything else on top of it
This commit is contained in:
Dima Kogan 2017-06-20 16:43:52 -07:00
parent 7d7511e62e
commit ba112a3bd9

View File

@ -438,7 +438,7 @@ sub interpretCommandline
die "Couldn't read image '$options{image}'"; die "Couldn't read image '$options{image}'";
} }
push @{$options{equation}}, qq{"$options{image}" binary filetype=auto flipy with rgbimage}; unshift @{$options{equation}}, qq{"$options{image}" binary filetype=auto flipy with rgbimage};
delete $options{image}; delete $options{image};
} }
} }