[Tex/LaTex] Showcase of beautiful wine bottle labels made with LaTeX/TikZ and friends

big-listfun

Did anybody design wine bottle labels for self made wine with Latex/TikZ/PSTricks? I'm interested in unusual designs (like the nice label for Barnstorming Bitter at http://www.tug.org/texshowcase/).

Best Answer

One first attempt using pgfornaments:

\documentclass[dvipsnames]{article}
\usepackage[margin=3cm]{geometry}
\usepackage{tikz}
\usepackage{fontspec}
\usepackage{pgfornament}
\setmainfont{Eccentric}

\newfontfamily\myfont[Numbers=OldStyle,Ligatures=TeX]{URW Chancery L}
\newfontfamily\myfonti[Numbers=OldStyle,Ligatures=TeX]{Charis SIL}
\newfontfamily\myfontii[Numbers=OldStyle,Ligatures=TeX]{Edwardian Script ITC}

\definecolor{mycream}{RGB}{248,240,201}

\begin{document}

\begin{tikzpicture}
\node[
  text width=6cm,
  text height=9cm,
  fill=mycream
] 
  (rect) {};
\draw[line width=5pt,line cap=rect,Maroon!80] 
  ([xshift=8pt,yshift=-8pt]rect.north west) -| 
  ([xshift=-8pt,yshift=8pt]rect.south east) -| 
  ([xshift=8pt,yshift=-8pt]rect.north west) -- cycle;
\node[
  font=\color{Maroon}\fontsize{36}{40}\selectfont,
  align=center
] 
  at ([yshift=-3cm]rect.north) {CUMBRE \\[-0.3ex] ROJA};
\node[
  font=\color{Maroon}\large,
  align=center
] 
  at ([yshift=-4.6cm]rect.north) {CABERNET SAUVIGNON \\[-0.3ex] 2013};
\node[
  align=center,
  font=\myfontii\Large,
  anchor=south
]
at ([yshift=1.5cm]rect.south)
 {Viñedos Medina \\[-0.6ex]
   Manizales, Colombia \\[-0.6ex]
   Producido y Envasado por \\[-0.6ex]
   M, L \& C};
\node[
  anchor=north west,
  font=\color{Maroon}
]
  at ([xshift=10pt,yshift=-10pt]rect.north west) {\pgfornament[width=1.75cm]{61}};
\node[
  anchor=north east,
  font=\color{Maroon}
]
  at ([xshift=-10pt,yshift=-10pt]rect.north east)
 {\pgfornament[width=1.75cm,symmetry=v]{61}};
\node[
  anchor=south west,
  font=\color{Maroon}
]
  at ([xshift=10pt,yshift=10pt]rect.south west) {\pgfornament[width=1.75cm,symmetry=h]{61}};
\node[
  anchor=south east,
  font=\color{Maroon}
]
  at ([xshift=-10pt,yshift=10pt]rect.south east) {\pgfornament[width=1.75cm,symmetry=c]{61}};
\end{tikzpicture}\qquad
%
\begin{tikzpicture}
\node[
  text width=6cm,
  text height=9cm,
  fill=mycream
] 
  (rect) {};
\draw[line width=2pt,line cap=rect,Maroon!80] 
  ([xshift=0.5\pgflinewidth,yshift=-0.5\pgflinewidth]rect.north west) -| 
  ([xshift=-0.5\pgflinewidth,yshift=0.5\pgflinewidth]rect.south east) -| 
  ([xshift=0.5\pgflinewidth,yshift=-0.5\pgflinewidth]rect.north west) -- cycle;
\node[
  font=\color{Maroon}\Large,
  align=center,
  anchor=north west
] 
  at ([xshift=5pt,yshift=-5pt]rect.north west) {CUMBRE ROJA};
\node[
  align=center,
 font=\myfont\selectfont\footnotesize,
  anchor=south,
  text width=5cm,
  align=center
]
at (rect.center)
 {Vino \\ carnoso y espeso.  \\ Produce un rica impresi\'on física \\ que evoca las montañas colombianas.};
\node[
 font=\myfonti\selectfont\footnotesize,
  anchor=north,
  text width=5cm,
  align=center
]
at ([yshift=-20pt]rect.center)
 {Ideal para complementar \\ estofados de carne y \\ platos basados en ganso};
\node[
  align=center,
  font=\myfonti\selectfont\footnotesize,
  anchor=south,
  text width=5cm,
  align=center
]
at ([yshift=2pt]rect.south)
 {750\,ml \\ GRADO ALCOHÓLICO \\ 15\% vol};
\end{tikzpicture}

\end{document}

enter image description here