PHP code example of ripaclub / imgman
1. Go to this page and download the library: Download ripaclub/imgman library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ripaclub / imgman example snippets
return [
\\ ...
'abstract_factories' => [
// Load abstract service
'ImgMan\Service\ImageServiceAbstractFactory',
// Load abstract factory for mongo storage
'ImgMan\Storage\Adapter\Mongo\MongoDbAbstractServiceFactory',
'ImgMan\Storage\Adapter\Mongo\MongoAdapterAbstractServiceFactory',
// Load abstract factory to FileSystem storage
'ImgMan\Storage\Adapter\FileSystem\FileSystemAbstractServiceFactory'
// Load abstract factory to aws storage previus import of aws/aws-sdk-php 3.17.6
'ImgMan\Storage\Adapter\Cdn\Amazon\S3\S3ServiceAbstractFactory',
'ImgMan\Storage\Adapter\Cdn\Amazon\CloudFront\CloudFrontServiceAbstractFactory',
'ImgMan\Storage\Adapter\Cdn\AmazonAdapterAbstractFactory',
],
'factories' => [
// Load (operation) helper plugin manager
'ImgMan\Operation\HelperPluginManager' => 'ImgMan\Operation\HelperPluginManagerFactory',
],
'invokables' => [
// Load adapter
'ImgMan\Adapter\Imagick' => 'ImgMan\Core\Adapter\ImagickAdapter',
'ImgMan\ResolverDefault' => 'ImgMan\Storage\Adapter\FileSystem\Resolver\ResolverDefault'
],
\\ ...
];
return [
\\ ...
'imgman_mongodb' => [
'MongoDb' => [
'database' => 'imgManStorage'
]
],
'imgman_adapter_mongo' => [
'Storage' => [
'collection' => 'image_test',
'database' => 'MongoDb'
]
],
\\ ...
];
return [
\\ ...
'imgman_amazon_client' => [
'AmazonS3Client' => [
'secret' => 'testSecret',
'key' => 'testKey',
'region' => 'testRegion',
'version' => 'latest',
'name' => 'S3'
],
'AmazonCloudFrontClient' => [
'secret' => 'testSecret',
'key' => 'testKey',
'region' => 'testRegion',
'version' => 'latest',
'name' => 'CloudFront'
]
],
'imgman_amazon_s3_service' => [
'S3Service' => [
'client' => 'AmazonS3Client',
'bucket' => 'test'
]
],
'imgman_amazon_cloud_front_service' => [
'CloudFrontService' => [
'client' => 'AmazonCloudFrontClient',
'domain' => 'testdomain'
]
],
'imgman_amazon_adapter' => [
'Storage' => [
's3_client' => 'S3Service',
'cloud_front_client' => 'CloudFrontService',
'name_strategy' => 'default',
'name_strategy_config' => [
'prefix' => 'test'
]
]
]
\\ ...
];
return [
\\ ...
'imgman_adapter_filesystem' => [
'Storage' => [
'path' => DIR_PATH_,
'resolver' => 'ImgMan\ResolverDefault'
],
]
\\ ...
];
return [
\\ ...
'imgman_services' => [
'ImgMan\Service\First' => [
'adapter' => 'ImgMan\Adapter\Imagick',
'storage' => 'Storage',
'helper_manager' => 'ImgMan\Operation\HelperPluginManager',
'renditions' => [
'thumb' => [
'resize' => [
'width' => 200,
'height' => 200,
],
'compression' => [
'compression' => 90,
'compressionQuality' => 70,
]
],
'thumbmaxi' => [
'resize' => [
'width' => 400,
'height' => 400,
],
],
],
],
],
\\ ...
];
$imgMan = $this->getServiceLocator()->get('ImgMan\Service\First');
$image = new ImgMan\Image\Image(__DIR__. '/../../../name_image.png'); //the path can be also a URL
$imgMan->grab($image, '/first/name/identifier/');
$imageOriginal = $imgMan->get('/first/name/identifier/', 'original');
$imageThumb = $imgMan->get('/first/name/identifier/', 'thumb');
$imageThumbMaxi = $imgMan->get('/first/name/identifier/', 'thumbmaxi');