Display thumbnails in differents formats ######################################## You have added thumbnails to your model. Now you want to displaying them in front-office. In list mode, you want to displaying them cropped to 150x150 pixels and in grayscale. In your list view: .. code-block:: php :emphasize-lines: 4-6 thumbnail->getToolkitImage()->crop_resize(150, 150)->grayscale()->html(array( 'style' => 'float:right;' )); echo '

', e($item->title), '

'; } In item page, you want to display the thumbnail with a max width of 300 pixels and a max height of 200 pixels, and a rotation of 15 degrees. In your item's view: .. code-block:: php :emphasize-lines: 3 thumbnail->getToolkitImage()->shrink(300, 200)->rotate(15)->html(); echo '

', e($item->title), '

'; echo '

', e($item->description), '

'; .. seealso:: :ref:`Toolkit_Image class for more possibilities `.