Example #1
0
 public function PhotoResizer(RM_Photo $photo)
 {
     if ($photo->getWidth() > $photo->getHeight()) {
         return $photo->getPath(672, null);
     } else {
         return $photo->getPath(null, 440);
     }
 }