Libraries tagged by Image CRUD
schliesser/credits
761 Downloads
Give credits: Automatically list all used images with their copyright. Multisite support.
vectorface/cc-icons
12805 Downloads
Generates an image based on a list of supported credit card types
orsif/instagram-without-api
5 Downloads
A simple PHP code to get unlimited instagram public pictures (users and tags) without api, without credentials (just token from cookies), just Instagram Scraping (with cookie and image data in base64).
gbv/image-attribution
72 Downloads
Get information for image attribution from Wikimedia Commons
ericmann/ext-c2pa
6 Downloads
PHP 8.3+ native C2PA Content Credentials: read/validate manifests and sign Media Library images incl. derivatives.
level51/silverstripe-image-credits
46 Downloads
Image credits extension for Silverstripe
dreipunktnull/filemetadata-image-credits
51 Downloads
Give credit where credit is due
crd2i/image-bundle
67 Downloads
Symfony2 bundle for image resizing.
mantekio/wp-edge-images
1 Downloads
Stop WordPress generating intermediate image sizes and serve every size on the fly from an AWS Serverless Image Handler or any Thumbor-compatible CDN. URL layer only, no AWS credentials.
ivoba/silverstripe-file-credits
15 Downloads
File Credits Extension for SilverStripe CMS
heimrichhannot/contao-filecredits
2669 Downloads
Contao module that adds credit support for images.
cloudinary/permissions
3 Downloads
Accounts with Permissions API access can manage custom permission policies. These policies assign permissions for a principal, allowing the principal to perform a specific action on a designated resource within a particular scope (your account or a product environment). Refer to the [Permissions API guide](permissions_api_guide) for instructions on what to specify in the `policy_statement` to control Cloudinary activities, and to the Cedar schema, which defines the possible values for principals, actions, and resources. The API uses **Basic Authentication** over HTTPS. Your **Provisioning Key** and **Provisioning Secret** are used for the authentication. These credentials (as well as your ACCOUNT_ID) are located in the [Cloudinary Console](https://console.cloudinary.com/pm) under **Settings > Account > Provisioning API Access**. The Permissions API has dedicated SDKs for the following languages: * JavaScript * PHP * Java
cudlo411/laravel-upload-img
2 Downloads
Demo package upload image
typoniels/depositphotos
0 Downloads
This extension integrates the free collections of Despositphotos as image source for TYPO3 and takes care of the correct attribution with image credits.
piurafunk/docker-php
9 Downloads
The Engine API is an HTTP API served by Docker Engine. It is the API the Docker client uses to communicate with the Engine, so everything the Docker client can do can be done with the API. Most of the client's commands map directly to API endpoints (e.g. `docker ps` is `GET /containers/json`). The notable exception is running containers, which consists of several API calls. # Errors The API uses standard HTTP status codes to indicate the success or failure of the API call. The body of the response will be JSON in the following format: ``` { "message": "page not found" } ``` # Versioning The API is usually changed in each release, so API calls are versioned to ensure that clients don't break. To lock to a specific version of the API, you prefix the URL with its version, for example, call `/v1.30/info` to use the v1.30 version of the `/info` endpoint. If the API version specified in the URL is not supported by the daemon, a HTTP `400 Bad Request` error message is returned. If you omit the version-prefix, the current version of the API (v1.40) is used. For example, calling `/info` is the same as calling `/v1.40/info`. Using the API without a version-prefix is deprecated and will be removed in a future release. Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine. The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer daemons. # Authentication Authentication for registries is handled client side. The client has to send authentication details to various endpoints that need to communicate with registries, such as `POST /images/(name)/push`. These are sent as `X-Registry-Auth` header as a Base64 encoded (JSON) string with the following structure: ``` { "username": "string", "password": "string", "email": "string", "serveraddress": "string" } ``` The `serveraddress` is a domain/IP without a protocol. Throughout this structure, double quotes are required. If you have already got an identity token from the [`/auth` endpoint](#operation/SystemAuth), you can just pass this instead of credentials: ``` { "identitytoken": "9cbaf023786cd7..." } ```