PHPackages                             fullpipe/image-bundle - 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. fullpipe/image-bundle

AbandonedArchivedSymfony-bundle[Image &amp; Media](/categories/media)

fullpipe/image-bundle
=====================

Simple image storage

v0.0.1(11y ago)0355MITPHPPHP &gt;=5.3.3

Since Feb 16Pushed 8y agoCompare

[ Source](https://github.com/fullpipe/image-bundle)[ Packagist](https://packagist.org/packages/fullpipe/image-bundle)[ Docs](https://github.com/fullpipe/image-bundle)[ RSS](/packages/fullpipe-image-bundle/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

About ImageBundle
=================

[](#about-imagebundle)

Simple storage for images.

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

[](#installation)

Add to your `composer.json`:

```
{
   "require": {
        "fullpipe/image-bundle": "dev-master"
    }
}
```

And to `AppKernel.php`:

```
// app/AppKernel.php
class AppKernel extends Kernel
{
    //...
    public function registerBundles()
    {
        $bundles = array(
            //...
            new Fullpipe\ImageBundle\FullpipeImageBundle()
        );

        return $bundles;
    }
    //...
}
```

Configuration
-------------

[](#configuration)

```
fullpipe_image:
    web_root: /media/image //Web directory
    data_root: %kernel.root_dir%/../web/media/image //Directory for storing images
```

Usage
-----

[](#usage)

First you need to extend `Fullpipe\ImageBundle\Entity\Image` by you own entity. For example we have `Acme\BannerBundle\Entity\Banner`

```
//Acme/BannerBundle/Resources/config/doctrine/Banner.orm.yml

Fullpipe\BannerBundle\Entity\Banner:
    type: entity
    table: acme_banner
    lifecycleCallbacks: {  }
```

and our entity

```
//Acme/BannerBundle/Entity/Banner.php

namespace Acme\BannerBundle\Entity;

use Fullpipe\ImageBundle\Entity\Image;

/**
 * Banner
 */
class Banner extends Image
{

}
```

after this we need to update `BannerType.php`

```
//Acme/BannerBundle/Form/Type/BannerType.php

namespace Acme\BannerBundle\Form\Type;

use Fullpipe\ImageBundle\Form\Type\ImageType;
use Symfony\Component\Form\FormBuilderInterface;

/**
 * Banner type.
 */
class BannerType extends ImageType
{
    /**
     * {@inheritdoc}
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        //...

        parent::buildForm($builder, $options);

        //..
    }
}
```

that's all

### Twig

[](#twig)

To get web path to original image use `web_path` twig filter. `` -&gt; `/media/image/some_path.png`

### With [LiipImagineBundle](https://github.com/liip/LiipImagineBundle)

[](#with-liipimaginebundle)

Do not forget to use same `data_root` directory

```
...
liip_imagine:
...
    loaders:
        default:
            filesystem:
                data_root: %kernel.root_dir%/../web/media/image
...
```

### TODO

[](#todo)

- tests
- model abstraction

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community6

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

4108d ago

### Community

Maintainers

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

---

Top Contributors

[![fullpipe](https://avatars.githubusercontent.com/u/929659?v=4)](https://github.com/fullpipe "fullpipe (17 commits)")

---

Tags

image

### Embed Badge

![Health badge](/badges/fullpipe-image-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/fullpipe-image-bundle/health.svg)](https://phpackages.com/packages/fullpipe-image-bundle)
```

###  Alternatives

[liip/imagine-bundle

This bundle provides an image manipulation abstraction toolkit for Symfony-based projects.

1.7k38.3M217](/packages/liip-imagine-bundle)[gregwar/image-bundle

Image handling bundle

1941.5M9](/packages/gregwar-image-bundle)[intervention/image-symfony

Symfony Integration of Intervention Image

1066.8k](/packages/intervention-image-symfony)

PHPackages © 2026

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