Download the PHP package pensiero/image-uploader without Composer
On this page you can find all versions of the php package pensiero/image-uploader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pensiero/image-uploader
More information about pensiero/image-uploader
Files in pensiero/image-uploader
Package image-uploader
Short Description Image uploader and resizer
License BSD-3-Clause
Homepage https://github.com/pensiero/image-uploader
Informations about the package image-uploader
Image Upload
API based service that allow to save, resize and read images
Features
- [x] Save on Filesystem
- [x] Save on AWS
- [x] Possibility to add Validators
- [x] Possibility to add Filters
- [x] PHP7 strict mode
- [x] Link with public Postman collection
- [ ] Unit testing
- [ ] Submit on packagist (composer)
- [ ] Host the demo somewhere
- [ ] Auth token API protection
Configuration
Environment variables allowed:
SAVE_HANDLER
: (filesystem|aws) where you will save the imagesAWS_ACCESS_KEY_ID
:AWS_SECRET_ACCESS_KEY
:AWS_REGION
:AWS_BUCKET
:OPTIMIZE
: (0|1) strip exif data in order to reduce image sizeMAX_DIMENSIONS
: (example: 4096x4096) maximum allowed dimensionsMAX_SIZE
: (example: 10240) maximum allowed size in kbALLOWED_DIMENSIONS
: (example: 1400x460;1280x460;800x600) dimensions allowed when requesting a resize version of a previously uploaded image
Usage via API
In order to receive a JSON response, you should add the following headers:
Content-Type: application/json
Accept: application/json; charset=utf-8
We are supposing that you uploaded this application on theappleisonthetable.com
GET https://theappleisonthetable.com/
Return info about a previously uploaded image
Parameters:
id
: (optional: integer) id of a previously uploaded image
Example GET data: {}
Example response:
Example GET data: {"id": "5897209a9325f7-78554697"}
Example response:
POST https://theappleisonthetable.com/
Upload an image
Parameters:
source
: (required: url|base64 string|uploaded file) you can send a remote url, an image base64 encoded (without new lines in JSON) or upload a file (see an example in the public/upload.phpwidth
: (optional: integer) if specified, the original image will be resized to the specified width before uploading itheight
: (optional: integer) if specified, the original image will be resized to the specified height before uploading it
Note: if you specify only the
width
or theheight
param, the image will be proportionally resized
Example POST data: {"source": "...very long base64 string..."}
Example response:
Demo
Hosting in progress...
Examples
If you want to use directly the Image object in your application (and not as a standalone API service), you can find some examples inside the public/examples directory.