PHPackages                             pagevamp/laravel-image-processor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. pagevamp/laravel-image-processor

ActiveLibrary[Image &amp; Media](/categories/media)

pagevamp/laravel-image-processor
================================

Package for uploading / resizing images into disk. Tested with s3/local &amp; laravel 5.8

0.0.1(6y ago)15MITPHP

Since Aug 15Pushed 6y ago3 watchersCompare

[ Source](https://github.com/pagevamp/laravel-image-processor)[ Packagist](https://packagist.org/packages/pagevamp/laravel-image-processor)[ RSS](/packages/pagevamp-laravel-image-processor/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (4)Versions (2)Used By (0)

Media upload / resize
=====================

[](#media-upload--resize)

A simple package for laravel to upload and resize media without any hassle.

Installation
------------

[](#installation)

Before to start you'll need to clone/download this package locally and then run from the terminal

```
$ composer install
```

```
$ php artisan vendor:publish
```

Usage
-----

[](#usage)

`env('MEDIA_STORAGE_DRIVER', 's3')` handles the disk `s3` or `public`

```

$processor = new Processor('pv_photo.png');` // accepts path to image

or

$processor = new Processor($request->file('image'));` // accepts path to image

$processor->resize(['small' => [100,200],'large' => [2000,1000]); // and you can define size and ratio so on

$processor->uploadResizedImages();

or

$processor->getResizedImages()->each(function ($resizedImage){
           $resizedImage->setName('generatecustomname.jpg');
            $resizedImage->upload();
            $resizedImage->getUploadedfileUrl();
       });

```

Features
--------

[](#features)

- Reads image from request / disk
- Upload original image with unique name with given sets of data
- Resize image into multiple sizes
- Upload resized images with custom name with custom path
- Currently tested with amazons3 and local storage

[![](https://camo.githubusercontent.com/aeb774c897f0223b97f4b256b9c37e2ac09d4517c519b1d34cf78da63233f659/68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f34613365353534356437643162656439353530362f6d61696e7461696e6162696c697479)](https://codeclimate.com/github/ujwaldhakal/image-processor/maintainability)

[![wercker status](https://camo.githubusercontent.com/f0357ef2ddc0d00e769a5386e5f5a3e14086057c4dcd1a307756c5f5eecec82d/68747470733a2f2f6170702e776572636b65722e636f6d2f7374617475732f61313136383664383261363537323238313030636464323838366263356236332f732f6d6173746572 "wercker status")](https://app.wercker.com/project/byKey/a11686d82a657228100cdd2886bc5b63)

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2463d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/16ec0cda1a5e4fdd96690492a23488087e88e1165e22a716eec62da60eddf0a3?d=identicon)[ujwaldhakal](/maintainers/ujwaldhakal)

![](https://www.gravatar.com/avatar/ebffc1eb92a6ccd53dc253417823bec553104bdf2a0a8922dbb67ce0338f35e2?d=identicon)[sujansh](/maintainers/sujansh)

---

Top Contributors

[![ujwaldhakal](https://avatars.githubusercontent.com/u/11195862?v=4)](https://github.com/ujwaldhakal "ujwaldhakal (6 commits)")

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/pagevamp-laravel-image-processor/health.svg)

```
[![Health](https://phpackages.com/badges/pagevamp-laravel-image-processor/health.svg)](https://phpackages.com/packages/pagevamp-laravel-image-processor)
```

###  Alternatives

[bkwld/croppa

Image thumbnail creation through specially formatted URLs for Laravel

510496.0k23](/packages/bkwld-croppa)[justbetter/statamic-image-optimize

Image optimization after upload

1315.2k](/packages/justbetter-statamic-image-optimize)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
