Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). UI Patterns (SDC in Drupal UI) 2.0.18 Minor update available for module ui_patterns (2.0.18). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

Imagecache External

4,294 sites Security covered
View on drupal.org

This module allows you to store external images on your server and apply Drupal's image styles to them. It provides ways to integrate this functionality into your Drupal site using render arrays, Twig extensions, theme functions, or through node fields.

About

Imagecache External is a utility module that allows you to store external images on your server and apply your own Image Styles.

Configuration

Important: to use the module you need to visit admin/config/media/imagecache_external and either:

  • Add some domains to the whitelist -or-
  • De-activate whitelist functionality

Usage instructions (for Drupal 8)

Render array

<?php
  return array(
    '#theme' => 'imagecache_external',
    '#uri' => 'https://www.drupal.org/files/druplicon.png',
    '#style_name' => 'thumbnail',
    '#alt' => 'Druplicon',
  );
?>

Twig extension (from 3.0.1)

{{ 'https://my.web.site/my-image.jpg'|imagecache_external('thumbnail') }}

Theme function

<?php
  print theme('imagecache_external', array(
    'uri' => 'https://www.drupal.org/files/druplicon.png',
    'style_name'=> 'thumbnail',
    'alt' => 'Druplicon',
)); 
?>

For Drupal 7 the instructions are the same, except you need to use the path instead of the uri parameter.

You can also use external images without coding at all by adding a Text or Link field to a Node Type and then use the Imagecache External Image formatter.

Other notes

  • Images are stored in the site's files folder in an external subdirectory.
  • Files can optionally be stored in subdirectories since 3.0.1
  • You may flush the fetched external images (note that this does not flush the generated imagecache files before 3.0.1) by visiting admin/config/media/imagecache_external/flush

Credits

Activity

Total releases
5
First release
Jun 2025
Latest release
2 months ago
Releases (12 mo)
4 ▲ from 1
Maintenance
Active

Release Timeline

Releases

Version Type Release date
3.0.9 Stable May 10, 2026
3.0.8 Stable Jan 12, 2026
3.0.7 Stable Nov 25, 2025
3.0.6 Stable Nov 24, 2025
3.0.5 Stable Jun 3, 2025