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

ActiveCraft-plugin

netlab/imageshop-field
======================

Integrates the Imageshop file picker into Craft CMS

1.0.8(1y ago)033MITPHP

Since Jul 15Pushed 1y agoCompare

[ Source](https://github.com/pappgergely/imageshop-field)[ Packagist](https://packagist.org/packages/netlab/imageshop-field)[ RSS](/packages/netlab-imageshop-field/feed)WikiDiscussions master Synced 1mo ago

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

Imageshop Field for Craft CMS
=============================

[](#imageshop-field-for-craft-cms)

This 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 guilty/imageshop-field

```

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

OR do it via the command line

```
php craft install/plugin imageshop-field

```

- 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 field" in the Field type dropdown on the field creation page.

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

[](#templating)

### Plain and simple

[](#plain-and-simple)

```

```

### 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

24

—

LowBetter than 32% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% 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 ~0 days

Total

2

Last Release

662d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3ae35f1ef1bfe80fd415d549cb637ead5eebc2f3bf6e98bcef5a4efca6b952a2?d=identicon)[Netlab](/maintainers/Netlab)

---

Top Contributors

[![HelgeSverre](https://avatars.githubusercontent.com/u/1089652?v=4)](https://github.com/HelgeSverre "HelgeSverre (21 commits)")[![thunder87](https://avatars.githubusercontent.com/u/13064503?v=4)](https://github.com/thunder87 "thunder87 (10 commits)")[![kristof21](https://avatars.githubusercontent.com/u/52291682?v=4)](https://github.com/kristof21 "kristof21 (7 commits)")[![idatorgersen](https://avatars.githubusercontent.com/u/32928835?v=4)](https://github.com/idatorgersen "idatorgersen (4 commits)")

---

Tags

imagescraftcmsimageshopbildebank

### Embed Badge

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

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

###  Alternatives

[spicyweb/craft-neo

A Matrix-like field type with block hierarchy

395798.1k10](/packages/spicyweb-craft-neo)[nystudio107/craft-seomatic

SEOmatic facilitates modern SEO best practices &amp; implementation for Craft CMS 5. It is a turnkey SEO system that is comprehensive, powerful, and flexible.

1741.4M46](/packages/nystudio107-craft-seomatic)[craftcms/commerce

Craft Commerce

243416.9k153](/packages/craftcms-commerce)[verbb/navigation

Create navigation menus for your site.

90683.7k17](/packages/verbb-navigation)[verbb/formie

The most user-friendly forms plugin for Craft.

101372.9k40](/packages/verbb-formie)[craftcms/ckeditor

Edit rich text content in Craft CMS using CKEditor.

48359.1k51](/packages/craftcms-ckeditor)

PHPackages © 2026

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