App-BlurFill

 view release on metacpan or  search on metacpan

README.md  view on Meta::CPAN

    blurfill [-w width] [-h height] [-o output_filename] image_filename

If width or height are omitted, they default to 650 pixels and 350 pixels
respectively. If the output filename is omitted, then one will be generated
for you. For example, if you start with `picture.png`, then your output will
be written to `picture_blur.png`.

## Docker container

The `davorg/app-blurfill` image contains the Perl API and the `blurfill`
command, without a web framework. Mount a directory containing an image and
run the command explicitly:

    docker run --rm -v "$PWD:/work" davorg/app-blurfill:0.1.0 \
      blurfill /work/picture.png

The web application is distributed separately as
[App::BlurFill::Web](https://metacpan.org/dist/App-BlurFill-Web) and as the
`davorg/app-blurfill-web` container image.

docker/DOCKER.md  view on Meta::CPAN

# Docker Usage

The `davorg/app-blurfill` image contains the App::BlurFill Perl API and the
`blurfill` command-line program. It intentionally contains no web framework.

```bash
docker build -f docker/Dockerfile -t davorg/app-blurfill:0.1.0 .
docker run --rm -v "$PWD:/work" davorg/app-blurfill:0.1.0 \
  blurfill /work/picture.png
```

The image is also the base for `davorg/app-blurfill-web`.



( run in 0.940 second using v1.01-cache-2.11-cpan-2e0ccfb7a10 )