As of now (January 31st 2015) there is a way to do that without using canvas, with pure CSS, and with only 2 lines of code.
The trick is using the css filter
and -webkit-filter
properties to draw two drop shadows with no blur, one for the positive axis and one for the negative, which will wrap around the image, which will provide the (hopefully) desired effect.
Note: css filters are not at all supported in IE (let's hope Spartan does better), here is a compatibility table.
This first snippet (fiddle) will apply the simplest border possible.
img {
-webkit-filter: drop-shadow(1px 1px 0 black)
drop-shadow(-1px -1px 0 black);
filter: drop-shadow(1px 1px 0 black)
drop-shadow(-1px -1px 0 black);
}
body {
background-color: lightcoral;
}
<img src="http://i.imgur.com/GZoXRjS.png" width="250">
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…