function GDToolkit::parseFile

Same name and namespace in other branches
  1. 11.x core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php \Drupal\system\Plugin\ImageToolkit\GDToolkit::parseFile()

File

core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php, line 284

Class

GDToolkit
Defines the GD2 toolkit for image manipulation within Drupal.

Namespace

Drupal\system\Plugin\ImageToolkit

Code

public function parseFile() {
  $data = @getimagesize($this->getSource());
  if ($data && in_array($data[2], static::supportedTypes())) {
    $this->setType($data[2]);
    $this->preLoadInfo = $data;
    return TRUE;
  }
  return FALSE;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.