Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flyimg/flyimg
Cloud-native application that resizes and crops images on the fly, delivering optimized images in formats such as AVIF, WebP, MozJPEG, or PNG using ImageMagick, with an efficient caching system.
https://github.com/flyimg/flyimg
avif compression crop crop-image docker face-detection flyimg hacktoberfest image-processing imagemagick mozjpeg resize-images
Last synced: 23 days ago
JSON representation
Cloud-native application that resizes and crops images on the fly, delivering optimized images in formats such as AVIF, WebP, MozJPEG, or PNG using ImageMagick, with an efficient caching system.
- Host: GitHub
- URL: https://github.com/flyimg/flyimg
- Owner: flyimg
- License: mit
- Created: 2016-03-08T09:05:33.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T05:49:51.000Z (6 months ago)
- Last Synced: 2024-05-01T11:29:22.585Z (6 months ago)
- Topics: avif, compression, crop, crop-image, docker, face-detection, flyimg, hacktoberfest, image-processing, imagemagick, mozjpeg, resize-images
- Language: PHP
- Homepage: https://demo.flyimg.io
- Size: 5.07 MB
- Stars: 926
- Watchers: 21
- Forks: 102
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-list-microservice - flyimg
- jimsghstars - flyimg/flyimg - Dockerized application that resizes and crops images on the fly, delivering optimized images in formats such as AVIF, WebP, MozJPEG, or PNG using ImageMagick, with an efficient caching system. (PHP)
README
# Flyimg
Official website »
GitHub
·
Bugs ReportThe Flyimg project is a Dockerized application that allows you to resize, crop, and compress images on the fly. One Docker container to build your own Cloudinary-like service.
By default, Flyimg generates the **AVIF** image format (when the browser supports it) which provides superior compression compared to other formats.
Additionally, Flyimg also generates the **WebP** format, along with the impressive **MozJPEG** compression algorithm to optimize images, other formats are supported also such as **PNG** and **GIF**.
## Fetch an image from anywhere; resize, compress, cache and serve... and serve, and serve, and serve...
You pass the image URL and a set of keys with options, like size or compression. Flyimg will fetch the image, convert it, store it, cache it and serve it. The next time the request comes, it will serve the cached version.
```html
```![Flyimg-demo](https://demo.flyimg.io/upload/w_300,q_90/https://mudawn.com/assets/butterfly-3000.jpg)
## Demo
Check out our demo page where you can test and review Flying's features:[https://demo.flyimg.io/](https://demo.flyimg.io)
## Documentation
Documentation available here: [https://flyimg.io](https://flyimg.io)
## Cloud Run Button
Flyimg can be deployed to GCP as a serverless container in one click with Cloud Run Button:
## Requirements
You will need to have **Docker** on your machine. Optionally you can use Docker machine to create a virtual environment. We have tested on **Mac**, **Windows** and **Ubuntu**.
## Usage
Pull the docker image
```bash
docker pull flyimg/flyimg
```Start the container
```bash
docker run -itd -p 8080:80 flyimg/flyimg
```To use custom parameters, make a copy of [parameters.yml](https://github.com/flyimg/flyimg/blob/main/config/parameters.yml) to your current directory. Update to suit your needs and run the command with volume parameter to replace the original parameters file.
```bash
docker run -itd -p 8080:80 -v $(pwd)/parameters.yml:/var/www/html/config/parameters.yml flyimg/flyimg
```## Build locally [Development Mode]
```sh
git clone https://github.com/flyimg/flyimg.git
```**CD into the folder** and to build the docker image by running:
```sh
docker build -t flyimg .
```This will download and build the main image, It will take a few minutes. If you get some sort of error related to files not found by apt-get or similar, try this same command again.
**IMPORTANT!** If you cloned the project, only for the first time, you need to run `composer install` **inside** the container:
```sh
docker exec -it flyimg composer install
```Again, it will take a few minutes to download the dependencies. Same as before, if you get some errors you should try running `composer install` again.
Then run the container:
```sh
docker run -itd -p 8080:80 -v $(pwd):/var/www/html --name flyimg flyimg
```For Fish shell users:
```sh
docker run -itd -p 8080:80 -v $PWD:/var/www/html --name flyimg flyimg
```The above command will make the Dockerfile run s6-overlay command which launches 2 services: **nginx** and **php-fpm** and starts listening on port 80 on the container and port 8080 on the host.
## Testing Flyimg service
You can navigate to your machine's IP in port 8080 (ex: `http://127.0.0.1:8080/` ) ; you should get a message saying: **Hello from Flyimg!** and a small homepage of Flyimg already working. If you get any errors at this stage it's most likely that composer has not finished installing or skipped something.
You can test your image resizing service by navigating to: `http://127.0.0.1:8080/upload/w_130,h_113,q_90/https://mudawn.com/assets/butterfly-3000.jpg`
**It's working!**
This is fetching an image from Mozilla, resizing it, saving it and serving it.
## How to transform images
You go to your server URL`http://imgs.kitty.com` and append `/upload/`; after that you can pass these options below, followed by an underscore and a value `w_250,q_50` Options are separated by coma (configurable to other separator).
After the options put the source of your image, it can be relative to your server or absolute: `/https://my.storage.io/imgs/pretty-kitten.jpg`
So to get a pretty kitten at 250 pixels wide, with 50% compression, you would write.
``---
## Demo Application running
[https://demo.flyimg.io](https://demo.flyimg.io)
`https://demo.flyimg.io/upload/w_300,h_250,c_1,o_jpg/https://mudawn.com/assets/butterfly-3000.jpg`
![resize-test](https://demo.flyimg.io/upload/w_300,h_250,c_1,o_jpg/https://mudawn.com/assets/butterfly-3000.jpg)
## Star History
## Community
- Follow us on [GitHub][1], [Twitter][2] and [LinkedIn][3].
## Adopters
See the [ADOPTERS.md](ADOPTERS.md) file for a list of companies / organisations that are using Flyimg.
## Supporters
A special thanks to JetBrains for supporting our project with their [open source license program](https://www.jetbrains.com/buy/opensource/).
![Jetbrains](https://demo.flyimg.io/upload/w_200/https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png)
## Contributors
This project exists thanks to all the people who contributed to it.
## Backers & Sponsors
Support us with a monthly donation and help us continue our activities.[[opencollective.com](https://opencollective.com/flyimg)]
## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.
Enjoy your Flyimaging!
[1]: https://github.com/flyimg
[2]: https://twitter.com/flyimg_
[3]: https://www.linkedin.com/company/flyimg