PHPackages                             webdna/imageshop - 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. webdna/imageshop

ActiveCraft-plugin[Image &amp; Media](/categories/media)

webdna/imageshop
================

ImageShop DAM Integration for CraftCMS

2.1.0(1y ago)1833[2 issues](https://github.com/webdna/ImageShop/issues)proprietaryPHP

Since Oct 11Pushed 1y ago2 watchersCompare

[ Source](https://github.com/webdna/ImageShop)[ Packagist](https://packagist.org/packages/webdna/imageshop)[ RSS](/packages/webdna-imageshop/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (12)Used By (0)

Official Imageshop plugin for Craft CMS
=======================================

[](#official-imageshop-plugin-for-craft-cms)

This official plugin integrates [Imageshop Digital Asset Management system](https://www.imageshop.org) with Craft CMS by exposing their image selector as a popup that saves the selected image data in a field so the selection can be used in twig templates.

[![Screenshot](./screenshot.png)](./screenshot.png)

Installation
============

[](#installation)

To install the plugin, follow these instructions.

- Open your terminal and go to your Craft project:

```
cd /path/to/project

```

- Then tell Composer to load the plugin:

```
composer require webdna/imageshop-dam

```

- In the Control Panel, go to Settings → Plugins and click the “Install” button for 'Imageshop'.

OR do it via the command line

```
php craft plugin/install imageshop-dam

```

- On the settings page, fill out the token and private key field to start using the plugin.
- You will now have access to the "Imageshop" in the Field type dropdown on the field creation page.

Templating:
-----------

[](#templating)

### Plain and simple

[](#plain-and-simple)

Note: Just like templating an assets field, the field will always return an array.

```

```

### Multiple images

[](#multiple-images)

```
{% for image in entry.imageshopField %}

{% endfor %}
```

### Using Imager

[](#using-imager)

Single size
-----------

[](#single-size)

```
{% set image = craft.imager.transformImage(entry.imageshopField.url, { width: 400 }) %}

```

Multiple sizes
--------------

[](#multiple-sizes)

```
{% set transforms = craft.imager.transformImage(
    entry.imageshopField.url,
    [
        { width: 200 },
        { width: 800 },
        { width: 1200 },
        { width: 1920 }
    ]
    ) %}

{% for image in transforms %}

{% endfor %}
```

Responsive images with srcset
-----------------------------

[](#responsive-images-with-srcset)

```
{% set transformedImages = craft.imager.transformImage(image,[
        { width: 1920, jpegQuality: 90, webpQuality: 90 },
        { width: 1200, jpegQuality: 75, webpQuality: 75 },
        { width: 800, jpegQuality: 75, webpQuality: 75 },
        { width: 400, jpegQuality: 65, webpQuality: 65 },
    ]) %}

```

### Available attributes

[](#available-attributes)

`imageshopField` is the name of the field in these examples.

```
Code:           {{ entry.imageshopField.code }}
Image:          {{ entry.imageshopField.image }}
Tags:           {{ entry.imageshopField.tags("no") | join(", ") }}
Title:          {{ entry.imageshopField.title }}
Rights:         {{ entry.imageshopField.rights }}
Description:    {{ entry.imageshopField.description }}
Credit:         {{ entry.imageshopField.credits }}
DocumentId:     {{ entry.imageshopField.documentId }}
Raw:            {{ entry.imageshopField.json | json_encode(constant("JSON_PRETTY_PRINT")) }}
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance24

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65% 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

Every ~99 days

Recently: every ~91 days

Total

9

Last Release

513d ago

### Community

Maintainers

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

---

Top Contributors

[![samuelbirch](https://avatars.githubusercontent.com/u/13586?v=4)](https://github.com/samuelbirch "samuelbirch (13 commits)")[![mikeymeister](https://avatars.githubusercontent.com/u/34517288?v=4)](https://github.com/mikeymeister "mikeymeister (6 commits)")[![CharlieGentle](https://avatars.githubusercontent.com/u/15872856?v=4)](https://github.com/CharlieGentle "CharlieGentle (1 commits)")

---

Tags

cmsCraftcraftcmscraft-pluginimageshop

### Embed Badge

![Health badge](/badges/webdna-imageshop/health.svg)

```
[![Health](https://phpackages.com/badges/webdna-imageshop/health.svg)](https://phpackages.com/packages/webdna-imageshop)
```

###  Alternatives

[spacecatninja/imager-x

Ninja powered image transforms.

29390.0k23](/packages/spacecatninja-imager-x)[doublesecretagency/craft-googlemaps

Maps in minutes. Powered by the Google Maps API.

1267.9k](/packages/doublesecretagency-craft-googlemaps)[nystudio107/craft-youtubeliveembed

This plugin allows you to embed a YouTube live stream and/or live chat on your webpage

163.7k](/packages/nystudio107-craft-youtubeliveembed)

PHPackages © 2026

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