Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickbasile/image-resizer
A Laravel app that resizes and optimizes images with Spatie's image package.
https://github.com/nickbasile/image-resizer
image-processing laravel
Last synced: 3 months ago
JSON representation
A Laravel app that resizes and optimizes images with Spatie's image package.
- Host: GitHub
- URL: https://github.com/nickbasile/image-resizer
- Owner: nickbasile
- License: mit
- Created: 2020-03-06T19:35:19.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T09:17:26.000Z (about 2 years ago)
- Last Synced: 2024-05-12T05:50:30.022Z (9 months ago)
- Topics: image-processing, laravel
- Language: PHP
- Homepage:
- Size: 853 KB
- Stars: 11
- Watchers: 0
- Forks: 1
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Image Resizer
A Laravel app that resizes and optimizes images with [Spatie's image](https://github.com/spatie/image) package.
## Use Case
I have a static site for my blog, and I wanted more control over my image optimizations.I use this app locally to optimize and resize my images before posting them.
I hope this repo helps if you're in a similar situation!
## Installation
1. Clone or fork this repo.
1. Navigate to the root directory
1. Copy `.env.example` to `.env`. Update it with your config and point it to your database.
1. Run `composer install` to install Composer dependencies.
1. Run `npm install` to install the NPM dependencies.
1. Run `php artisan key:generate` to create the app key.
1. Run `php artisan migrate` to run the migrations.
1. Run `php artisan storage:link` to [create a symbolic link](https://laravel.com/docs/7.x/filesystem#the-public-disk) between the storage and the public directories.
1. You're good to go!## Contributing
### New Features
This app is customized to my needs. So, please fork it and make your own changes if you'd like to add functionality.### Bugs
Please open an issue if you find a bug!## Credits
Thank you to Spatie for their awesome [image](https://github.com/spatie/image) package!