Neos\Media\TypeConverter\ImageInterfaceArrayPresenter::canConvertFrom PHP Method

canConvertFrom() public method

If $source has an identity, we have a persisted Image, and therefore this type converter should withdraw and let the PersistedObjectConverter kick in.
public canConvertFrom ( mixed $source, string $targetType ) : boolean
$source mixed The source for the to-build Image
$targetType string Should always be 'string'
return boolean
    public function canConvertFrom($source, $targetType)
    {
        return true;
    }