class CreateNew in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/src/Plugin/ImageToolkit/Operation/gd/CreateNew.php \Drupal\system\Plugin\ImageToolkit\Operation\gd\CreateNew
- 9 core/modules/system/src/Plugin/ImageToolkit/Operation/gd/CreateNew.php \Drupal\system\Plugin\ImageToolkit\Operation\gd\CreateNew
Defines GD2 create_new image operation.
Plugin annotation
@ImageToolkitOperation(
  id = "gd_create_new",
  toolkit = "gd",
  operation = "create_new",
  label = @Translation("Set a new image"),
  description = @Translation("Creates a new transparent resource and sets it for the image.")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait- class \Drupal\Core\ImageToolkit\ImageToolkitOperationBase implements ImageToolkitOperationInterface- class \Drupal\system\Plugin\ImageToolkit\Operation\gd\GDImageToolkitOperationBase- class \Drupal\system\Plugin\ImageToolkit\Operation\gd\CreateNew
 
 
- class \Drupal\system\Plugin\ImageToolkit\Operation\gd\GDImageToolkitOperationBase
 
- class \Drupal\Core\ImageToolkit\ImageToolkitOperationBase implements ImageToolkitOperationInterface
 
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of CreateNew
File
- core/modules/ system/ src/ Plugin/ ImageToolkit/ Operation/ gd/ CreateNew.php, line 18 
Namespace
Drupal\system\Plugin\ImageToolkit\Operation\gdView source
class CreateNew extends GDImageToolkitOperationBase {
  /**
   * {@inheritdoc}
   */
  protected function arguments() {
    return [
      'width' => [
        'description' => 'The width of the image, in pixels',
      ],
      'height' => [
        'description' => 'The height of the image, in pixels',
      ],
      'extension' => [
        'description' => 'The extension of the image file (e.g. png, gif, etc.)',
        'required' => FALSE,
        'default' => 'png',
      ],
      'transparent_color' => [
        'description' => 'The RGB hex color for GIF transparency',
        'required' => FALSE,
        'default' => '#ffffff',
      ],
      'is_temp' => [
        'description' => 'If TRUE, this operation is being used to create a temporary image by another GD operation. After performing its function, the caller is responsible for destroying the original GD resource.',
        'required' => FALSE,
        'default' => FALSE,
      ],
    ];
  }
  /**
   * {@inheritdoc}
   */
  protected function validateArguments(array $arguments) {
    // Assure extension is supported.
    if (!in_array($arguments['extension'], $this
      ->getToolkit()
      ->getSupportedExtensions())) {
      throw new \InvalidArgumentException("Invalid extension ('{$arguments['extension']}') specified for the image 'create_new' operation");
    }
    // Assure integers for width and height.
    $arguments['width'] = (int) round($arguments['width']);
    $arguments['height'] = (int) round($arguments['height']);
    // Fail when width or height are 0 or negative.
    if ($arguments['width'] <= 0) {
      throw new \InvalidArgumentException("Invalid width ('{$arguments['width']}') specified for the image 'create_new' operation");
    }
    if ($arguments['height'] <= 0) {
      throw new \InvalidArgumentException("Invalid height ({$arguments['height']}) specified for the image 'create_new' operation");
    }
    // Assure transparent color is a valid hex string.
    if ($arguments['transparent_color'] && !Color::validateHex($arguments['transparent_color'])) {
      throw new \InvalidArgumentException("Invalid transparent color ({$arguments['transparent_color']}) specified for the image 'create_new' operation");
    }
    return $arguments;
  }
  /**
   * {@inheritdoc}
   */
  protected function execute(array $arguments) {
    // Get the image type.
    $type = $this
      ->getToolkit()
      ->extensionToImageType($arguments['extension']);
    // Store the original GD resource.
    $original_res = $this
      ->getToolkit()
      ->getResource();
    // Create the resource.
    if (!($res = imagecreatetruecolor($arguments['width'], $arguments['height']))) {
      return FALSE;
    }
    // Fill the resource with transparency as possible.
    switch ($type) {
      case IMAGETYPE_PNG:
      case IMAGETYPE_WEBP:
        imagealphablending($res, FALSE);
        $transparency = imagecolorallocatealpha($res, 0, 0, 0, 127);
        imagefill($res, 0, 0, $transparency);
        imagealphablending($res, TRUE);
        imagesavealpha($res, TRUE);
        break;
      case IMAGETYPE_GIF:
        if (empty($arguments['transparent_color'])) {
          // No transparency color specified, fill white transparent.
          $fill_color = imagecolorallocatealpha($res, 255, 255, 255, 127);
        }
        else {
          $fill_rgb = Color::hexToRgb($arguments['transparent_color']);
          $fill_color = imagecolorallocatealpha($res, $fill_rgb['red'], $fill_rgb['green'], $fill_rgb['blue'], 127);
          imagecolortransparent($res, $fill_color);
        }
        imagefill($res, 0, 0, $fill_color);
        break;
      case IMAGETYPE_JPEG:
        imagefill($res, 0, 0, imagecolorallocate($res, 255, 255, 255));
        break;
    }
    // Update the toolkit properties.
    $this
      ->getToolkit()
      ->setType($type);
    $this
      ->getToolkit()
      ->setResource($res);
    // Destroy the original resource if it is not needed by other operations.
    if (!$arguments['is_temp'] && is_resource($original_res)) {
      imagedestroy($original_res);
    }
    return TRUE;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| CreateNew:: | protected | function | Returns the definition of the operation arguments. Overrides ImageToolkitOperationBase:: | |
| CreateNew:: | protected | function | Performs the actual manipulation on the image. Overrides ImageToolkitOperationBase:: | |
| CreateNew:: | protected | function | Validates the arguments. Overrides ImageToolkitOperationBase:: | |
| DependencySerializationTrait:: | protected | property | ||
| DependencySerializationTrait:: | protected | property | ||
| DependencySerializationTrait:: | public | function | 2 | |
| DependencySerializationTrait:: | public | function | 2 | |
| GDImageToolkitOperationBase:: | protected | function | The correctly typed image toolkit for GD operations. Overrides ImageToolkitOperationBase:: | |
| ImageToolkitOperationBase:: | protected | property | A logger instance. | |
| ImageToolkitOperationBase:: | protected | property | The image toolkit. | |
| ImageToolkitOperationBase:: | final public | function | ||
| ImageToolkitOperationBase:: | protected | function | Checks if required arguments are passed in and adds defaults for non passed in optional arguments. | |
| ImageToolkitOperationBase:: | public | function | Constructs an image toolkit operation plugin. | |
| MessengerTrait:: | protected | property | The messenger. | 18 | 
| MessengerTrait:: | public | function | Gets the messenger. | 18 | 
| MessengerTrait:: | public | function | Sets the messenger. | |
| PluginBase:: | protected | property | Configuration information passed into the plugin. | 1 | 
| PluginBase:: | protected | property | The plugin implementation definition. | |
| PluginBase:: | protected | property | The plugin_id. | |
| PluginBase:: | constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
| PluginBase:: | public | function | ||
| PluginBase:: | public | function | ||
| PluginBase:: | public | function | 2 | |
| PluginBase:: | public | function | ||
| PluginBase:: | public | function | Determines if the plugin is configurable. | |
| StringTranslationTrait:: | protected | property | The string translation service. | 3 | 
| StringTranslationTrait:: | protected | function | Formats a string containing a count of items. | |
| StringTranslationTrait:: | protected | function | Returns the number of plurals supported by a given language. | |
| StringTranslationTrait:: | protected | function | Gets the string translation service. | |
| StringTranslationTrait:: | public | function | Sets the string translation service to use. | 1 | 
| StringTranslationTrait:: | protected | function | Translates a string to the current language or to a given language. | 
