以下で全画像を削除できる。
$images = $sheet->getDrawingCollection();
foreach ($images as $imageKey => $image) {
// $image->getCoordinates() ……で画像が配置されているセル名(A1とか)が取得できるので、
// それで消すものを判定できる。
// $imageはPHPExcel_Worksheet_BaseDrawingなので、他のプロパティが欲しければそちらを参照
// 画像の削除
$images->offsetUnset($imageKey);
}