SilverStripe Images - How to get images with original dimensions?

131 Views Asked by At

I have a page which has Images in many_many relation. How to get images with original dimensions?

I'm using below code

<code><% loop Images %>
$SetSize(250,250)
<% end_loop %></code>
2

There are 2 best solutions below

2
On BEST ANSWER
<% loop Images %>
    $Me
<% end_loop %>

$Me is how you access the current item of the loop (it's a bit like $this in PHP).

Another way would be $forTemplate, but that's a bit inelegant.

0
On

You can use $URL and do something like

<img src="$URL" alt="$Title" />