2
我已經將blueimp jquery文件上傳了。我試圖做更多image_versions。 第一個和最後一個image_version確實有效。在我的情況下,'小'和'縮略圖'起作用,另一個不起作用。 在其他image_versions中,圖像將被上傳,但不會調整到正確的大小。blueimp jquery文件上傳器image_versions不起作用
這是我的代碼剪斷:
'image_versions' => array(
// The empty image version key defines options for the original image:
'' => array(
// Automatically rotate images based on EXIF meta data:
'auto_orient' => true
),
'small' => array(
'max_width' => 150,
'max_height' => 150
),
'medium' => array(
'max_width' => 200,
'max_height' => 200
),
'large' => array(
'max_width' => 400,
'max_height' => 400
),
'xlarge' => array(
'max_width' => 600,
'max_height' => 600
),
'square' => array(
'crop' => true,
'max_width' => 300,
'max_height' => 300
),
'thumbnail' => array(
'max_width' => 100,
'max_height' => 100
)
)
'no_cache =>真' 的伎倆。這個問題浪費了整整一天。終於找到你的解決方案謝謝:)(y) – 2017-10-02 16:18:50