i´ve the blueimp jquery file uploade. I´ve tried to make more image_versions. The first and the last image_version does work. In my case '', 'small' and 'thumbnail' works, the other one are not working. At the other image_versions the image would be uploadet but not resized to the right size.
This is my code snip:
'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
)
)