leora
leora

Reputation: 196429

is there anyway to dynamically create an image with embedded hyperlinks

i am created images on the fly in my controller (bitmaps, pngs, gif) and sending them down to the view. Is there anyway to embed hyperlinks into an image ?

Upvotes: 0

Views: 259

Answers (3)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

Can't you just wrap the image with an anchor?

<a href="/controller/action/123">
    <img src="/controller/dynamicimage/123" alt="" />
</a>

A html helper method extension might be useful here to generate previous markup.

Upvotes: 1

ChrisLively
ChrisLively

Reputation: 88044

Html ImageMaps is the closest you can get.

Upvotes: 2

DoctorLouie
DoctorLouie

Reputation: 2674

No, there is no way to embed hyperlinks into images.

Upvotes: 2

Related Questions