Posted by sandrewj on August 16, 2011 at 4:46pm
You can already import the presets easily if you have the ability to execute php code.
//lines you copied from the export page
$presets = array(); $presets['importy_preset'] = array ( 'presetname' => 'importy_preset', 'actions' => array ( 0 => array ( 'weight' => '0', 'module' => 'imagecache', 'action' => 'imagecache_scale_and_crop', 'data' => array ( 'width' => '100', 'height' => '100', ), ), ), );
//lines to loop through and save the presets.
foreach ($presets as $preset){
imagecache_preset_save($preset);
}
You could do this on a