Deletes an image effect.
$effect: An image effect array.
function image_effect_delete($effect) {
db_delete('image_effects')
->condition('ieid', $effect['ieid'])
->execute();
$style = image_style_load(NULL, $effect['isid']);
image_style_flush($style);
}