Skip to content

Instantly share code, notes, and snippets.

View seanlinehan's full-sized avatar

Sean Linehan seanlinehan

  • San Francisco, CA
View GitHub Profile
@seanlinehan
seanlinehan / GenBoxShadow.php
Created October 4, 2012 03:07
Create a pure-CSS version of any image
// Do whatever you'd like with the script! Show it off, mod it up, post it places, or whatever. :)
// (If you do, I wouldn't mind a Twitter shoutout at @_slinehan when appropriate!)
$imageURL = "URL HERE";
$image = imagecreatefromjpeg($imageURL);
$width = imagesx($image);
$height = imagesy($image);
// First, let's resize the image to something manageable while maintaining aspect ratio.