17 $previewWidth = $options ? $options->
getWidth() : 300;
18 $previewHeight = $options ? $options->getHeight() : 300;
21 $destinationRectangle =
new Rectangle($previewWidth, $previewHeight);
23 $needResize = $sourceRectangle->resize($destinationRectangle, $previewMode);
26 $previewWidth = $destinationRectangle->getWidth();
27 $previewHeight = $destinationRectangle->getHeight();
31 $previewWidth = $sourceRectangle->getWidth();
32 $previewHeight = $sourceRectangle->getHeight();
36 return new Rectangle($previewWidth, $previewHeight);