所以我有一个我想输出的自定义图像大小,我尝试了以下方法:
{profile_logo:thumbnail wrap="image"}
但是你没有得到不理想的高度和宽度,所以我尝试了:
{profile_logo}
<img src="{url:thumbnail}" alt="{title}" width="{width}" height="{height}" />
{/profile_logo}
但是,这会输出原始文件的宽度和高度,所以我剩下的唯一选择是硬编码不理想的高度和宽度
{profile_logo}
<img src="{url:thumbnail}" alt="{title}" width="80" height="52" />
{/profile_logo}
反正有动态输出缩略图的高度和宽度吗?已尝试 {width:thumbnail} 但它不起作用。
干杯!