Create an image style

to create in code, programmatically an image style (previously called image cache preset)

  1. $style = image_style_save(array('name' => 'banner'));
  2. $effect = array(
  3. 'name' => 'image_scale_and_crop',
  4. 'data' => array(
  5. 'width' => 1400,
  6. 'height' => 350,
  7. ),
  8. 'isid' => $style['isid'],
  9. );