apply_filters( 'image_memory_limit', int|string $filtered_limit )

Filters the memory limit allocated for image manipulation.


Parameters

$filtered_limit int|string
Maximum memory limit to allocate for image processing.
Default WP_MAX_MEMORY_LIMIT or the original php.ini memory_limit, whichever is higher.
Accepts an integer (bytes), or a shorthand string notation, such as '256M'.

Top ↑

Source

File: wp-includes/functions.php. View all references

$filtered_limit = apply_filters( 'image_memory_limit', $filtered_limit );


Top ↑

Changelog

Changelog
Version Description
4.6.0 The default now takes the original memory_limit into account.
3.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.