phpExcelで画像のコピーを作成する方法

ファイルから画像を追加するときのように、PHPExcel_Worksheet_Drawingオブジェクトを作成してシートに追加するのだが

$image_src = getDrawingCollection();
$image_copy = new PHPExcel_Worksheet_Drawing();
$image_copy->setResizeProportional(false);
$image_copy->setCoordinates       ($range);
$image_copy->setPath              ($image_src->getPath(), false);
$image_copy->setHeight            ($image_src->getHeight());
$image_copy->setWidth             ($image_src->getWidth());
$image_copy->setOffsetX           ($image_src->getOffsetX());
$image_copy->setOffsetY           ($image_src->getOffsetY());
$image_copy->setRotation          ($image_src->getRotation());
$image_copy->setShadow            ($image_src->getShadow());
$image_copy->setWorksheet($sheet);