We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
convert
save
Depends on: #10, #36 Todo: look at possibilities, check what works from a usability standpoint.
Make
convert <format>
save <file-path>
This might make <out> from sic <in> <out> <options> optional.
<out>
sic <in> <out> <options>
save example grammar (simplified, depends on os/filesystem):
whitespace = _{ (" " | "\t" | "\n" | "\r\n") } sep = _{ ";" } uint = @{ digit+ } digit = { '0'..'9' } path = ${ ( ('a'..'z') | ('A'..'Z') | digit | "." )+ } operation_sequence = _{ (operation ~ sep?)+ } operation = _{ blur | flip_horizontal | flip_vertical | resize | save } blur = ${ ^"blur" ~ whitespace ~ uint} flip_horizontal = { ^"flip_horizontal" } flip_vertical = { ^"flip_vertical" } resize = ${ ^"resize" ~ whitespace ~ uint ~ whitespace ~ uint } save = ${ ^"save" ~ whitespace ~ path } main = _{ soi ~ operation_sequence ~ eoi }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Depends on: #10, #36
Todo: look at possibilities, check what works from a usability standpoint.
Make
convert <format>
and
save <file-path>
part of script.
This might make
<out>
fromsic <in> <out> <options>
optional.save example grammar (simplified, depends on os/filesystem):
The text was updated successfully, but these errors were encountered: