1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Api;
use Magento\Framework\Api\Data\ImageContentInterface;
use Magento\Framework\Exception\InputException;
/**
* Interface ImageProcessorInterface
*
* @api
* @since 100.0.2
*/
interface ImageProcessorInterface
{
/**
* Process Data objects with image type custom attributes and update the custom attribute values with saved image
* paths
*
* @api
* @param CustomAttributesDataInterface $dataObjectWithCustomAttributes
* @param string $entityType entity type
* @param CustomAttributesDataInterface $previousCustomerData
* @return CustomAttributesDataInterface
*/
public function save(
CustomAttributesDataInterface $dataObjectWithCustomAttributes,
$entityType,
CustomAttributesDataInterface $previousCustomerData = null
);
/**
* Process image and save it to the entity's media directory
*
* @param string $entityType
* @param ImageContentInterface $imageContent
* @return string Relative path of the file where image was saved
* @throws InputException
*/
public function processImageContent($entityType, $imageContent);
}