themeplate / image
ThemePlate 图片处理器
v2.1.2
2024-05-20 04:18 UTC
Requires
- php: ^7.4|^8.2
- intervention/image: ^2.7|^3.4
Requires (Dev)
- themeplate/tester: ^2.1
Suggests
- themeplate/process: ^2.4
This package is auto-updated.
Last update: 2024-09-20 06:46:07 UTC
README
用法
use ThemePlate\Image; Image::register( 'wanted_size', 1920, 1080 ); Image::manipulate( 'wanted_size', 'pixilate', 10 ); Image::register( 'another_size', 640, 480 ); Image::manipulate( 'another_size', 'greyscale' ); Image::manipulate( 'another_size', 'blur', 20 ); $processor = Image::processor(); $processor->report( function( $output ) { error_log( print_r( $output, true ) ); } ); // Simply use the core functions like you normally would // - wp_get_attachment_image // - wp_get_attachment_image_url // - the_post_thumbnail // - get_the_post_thumbnail // - get_the_post_thumbnail_url
强制刷新图片
<WP_HOME>/?tpi_refresh=<attachment_id>
<WP_HOME>/?tpi_refresh[]=<id1>&tcs_refresh[]=<id2>
仅限登录时使用
Image::register( $name, $width, $height )
- $name (string)(必需) 大小标识符
- $width (int)(必需) 像素宽度
- $height (int)(必需) 像素高度
Image::manipulate( $size, $filter, $args )
- $size (string)(必需) 已注册的大小
- $filter (string)(必需) 要应用的过滤器
- $args (array)(可选) 要传递的参数。默认
null
请参阅可用的过滤器:https://image.intervention.io/v2/
Image::processor()
在后台进行处理(裁剪/调整大小和处理)