NAME
App::BlurFill::CLI - The command line interface for App::BlurFill
SYNOPSIS
use App::BlurFill::CLI;
my $blur_fill = App::BlurFill::CLI->new;
my $output = $blur_fill->process;
print "Blurred image saved to: $output\n";
DESCRIPTION
App::BlurFill::CLI is a simple command line tool to create a blurred background image from a given image. It scales the image to a specified width and height, applies a Gaussian blur, and saves the result as a new image file.
METHODS
new
my $blur_fill = App::BlurFill::CLI->new();
Creates a new App::BlurFill object. The no parameters are required.
run
$blur_fill->run();
Runs the command line interface. It processes the command line arguments and creates a new App::BlurFill object.
AUTHOR
Dave Cross <dave@perlhacks.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2025, Magnum Solutions Ltd. All rights reserved.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.