Reputation: 47
How can I rotate an image in RML? I tried using rotate degrees="90"
but it didn't work.
Upvotes: 0
Views: 175
Reputation: 26768
If you want to rotate an image with <rotate degrees="90"/>
put in <pageGraphics>
.
<pageGraphics>
<rotate degrees="90"/>
<image x="19cm" y="1cm" height="70.0" >[[ company.footer_img ]]</image>
</pageGraphics>
Upvotes: 0