Last active
October 7, 2015 12:27
-
-
Save bastianallgeier/31417e977cf256d2c739 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="<?php $page->image()->crop(300, 200)->url() ?>" alt="Cropped by width and height"> | |
<img src="<?php $page->image()->crop(300)->url() ?>" alt="Cropped box"> | |
<img src="<?php $page->image()->resize(300, 200)->url() ?>" alt="Resized by width and height"> | |
<img src="<?php $page->image()->resize(300)->url() ?>" alt="Resized by width only"> | |
<img src="<?php $page->image()->resize(false, 200)->url() ?>" alt="Resized by height only"> | |
<img src="<?php $page->image()->resize(300, 200, 80)->url() ?>" alt="Resized and reduced quality"> | |
<img src="<?php $page->image()->crop(300, 200, 80)->url() ?>" alt="Cropped and reduced quality"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment