Skip to content

Commit

Permalink
Merge pull request #2 from vedanshjainvj/vedansh
Browse files Browse the repository at this point in the history
Comment Added For Blur Effect
  • Loading branch information
desujoy authored Oct 20, 2023
2 parents 523da89 + ee2bac0 commit aea807d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ fn main() {
}
let subcommand = args.remove(0);
match subcommand.as_str() {
"blur" => {
"blur" => {
// Blur Effect
if args.len() != 3 {
print_usage_and_exit();
}
Expand All @@ -17,7 +18,8 @@ fn main() {
blur(infile, outfile, amount);
}

"brighten" => {
"brighten" => {
// Brightening Effect
if args.len() != 3 {
print_usage_and_exit();
}
Expand Down

0 comments on commit aea807d

Please sign in to comment.