我需要能够在 wordpress 上重新生成缩略图。由于 Google App Engine 上的 wordpress 使用 Google Cloud Storage 架构,因此插件“重新生成缩略图”不起作用。我的整个模板依赖于不同大小的图像。谷歌应用引擎插件是否有任何修改可以解决这个问题?
我可以将我需要的所有尺寸添加到我在 GAE 插件的函数 image_sizes() 中找到的这个集合中吗?
$images = [
'thumb' => [
'width' => intval( get_option( 'thumbnail_size_w' ) ),
'height' => intval( get_option( 'thumbnail_size_h' ) ),
'crop' => (bool) get_option( 'thumbnail_crop' )
],
'medium' => [
'width' => intval( get_option( 'medium_size_w' ) ),
'height' => intval( get_option( 'medium_size_h' ) ),
'crop' => false
],
'large' => [
'width' => intval( get_option( 'large_size_w' ) ),
'height' => intval( get_option( 'large_size_h' ) ),
'crop' => false
],
'full' => [
'width' => null,
'height' => null,
'crop' => false
]
];
谢谢