I'm using numeric slots to keep a gallery of images in a sortable order. It would be nice if I could do something like:
$slot = Imager::getLastSlotUsed($model);
$slot++
$image = Imager::saveFromFile($file, $model, ['slot'=>$slot]);
It might be tricky if you use a combination of strings (e.g. "main_image") and integers for slots, but I'm sure it's doable. 😄