Created
September 13, 2017 01:11
-
-
Save andrewfowlie/c4421939bda9da7d948888eeb2eeaa49 to your computer and use it in GitHub Desktop.
LaTeX package for using tikz to put a shadow around an image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\NeedsTeXFormat{LaTeX2e}[1994/06/01] | |
\ProvidesPackage{shadow}[2017/09/13 shadow] | |
% code adapted from http://tex.stackexchange.com/a/11483/3954 | |
\usepackage{tikz} | |
\usetikzlibrary{shadows,calc} | |
% some parameters for customization | |
\def\shadowshift{4pt,-4pt} | |
\def\shadowradius{8pt} | |
\colorlet{innercolor}{black!60} | |
\colorlet{outercolor}{gray!05} | |
% this draws a shadow under a rectangle node | |
\newcommand\drawshadow[1]{ | |
\begin{pgfonlayer}{shadow} | |
\shade[outercolor,inner color=innercolor,outer color=outercolor] ($(#1.south west)+(\shadowshift)+(\shadowradius/2,\shadowradius/2)$) circle (\shadowradius); | |
\shade[outercolor,inner color=innercolor,outer color=outercolor] ($(#1.north west)+(\shadowshift)+(\shadowradius/2,-\shadowradius/2)$) circle (\shadowradius); | |
\shade[outercolor,inner color=innercolor,outer color=outercolor] ($(#1.south east)+(\shadowshift)+(-\shadowradius/2,\shadowradius/2)$) circle (\shadowradius); | |
\shade[outercolor,inner color=innercolor,outer color=outercolor] ($(#1.north east)+(\shadowshift)+(-\shadowradius/2,-\shadowradius/2)$) circle (\shadowradius); | |
\shade[top color=innercolor,bottom color=outercolor] ($(#1.south west)+(\shadowshift)+(\shadowradius/2,-\shadowradius/2)$) rectangle ($(#1.south east)+(\shadowshift)+(-\shadowradius/2,\shadowradius/2)$); | |
\shade[left color=innercolor,right color=outercolor] ($(#1.south east)+(\shadowshift)+(-\shadowradius/2,\shadowradius/2)$) rectangle ($(#1.north east)+(\shadowshift)+(\shadowradius/2,-\shadowradius/2)$); | |
\shade[bottom color=innercolor,top color=outercolor] ($(#1.north west)+(\shadowshift)+(\shadowradius/2,-\shadowradius/2)$) rectangle ($(#1.north east)+(\shadowshift)+(-\shadowradius/2,\shadowradius/2)$); | |
\shade[outercolor,right color=innercolor,left color=outercolor] ($(#1.south west)+(\shadowshift)+(-\shadowradius/2,\shadowradius/2)$) rectangle ($(#1.north west)+(\shadowshift)+(\shadowradius/2,-\shadowradius/2)$); | |
\filldraw ($(#1.south west)+(\shadowshift)+(\shadowradius/2,\shadowradius/2)$) rectangle ($(#1.north east)+(\shadowshift)-(\shadowradius/2,\shadowradius/2)$); | |
\end{pgfonlayer} | |
} | |
% create a shadow layer, so that we don't need to worry about overdrawing other things | |
\pgfdeclarelayer{shadow} | |
\pgfsetlayers{shadow,main} | |
\newsavebox\mybox | |
\newlength\mylen | |
\newcommand\shadowimage[2][]{% | |
\setbox0=\hbox{\includegraphics[#1]{#2}} | |
\setlength\mylen{\wd0} | |
\ifnum\mylen<\ht0 | |
\setlength\mylen{\ht0} | |
\fi | |
\divide \mylen by 120 | |
\def\shadowshift{\mylen,-\mylen} | |
\def\shadowradius{\the\dimexpr\mylen+\mylen+\mylen\relax} | |
\begin{tikzpicture} | |
\node[anchor=south west, inner sep=0, fill=white] (image) at (0,0) {\includegraphics[#1]{#2}}; | |
\drawshadow{image} | |
\end{tikzpicture}} | |
\endinput |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment