I want to make a line which can overlay an image.
I am trying to write a huge command for shortcut a lot of work : New command, load multiple images .
I want to add few lines which can overlay the biggest image in 3rd answer. Tried overpic but it didnt work well.
------ EDIT

This is what I want to achive by modifing this :
\documentclass[draft]{article}
\usepackage{graphicx}
\usepackage{subcaption}
\newcommand{\includegraphicsset}[1]{%
\begin{figure*}
\centering
\begin{subfigure}[b]{\textwidth}
\centering
\includegraphics[width=\textwidth]{/gfx/part#1/pic1}
\caption[short]{the largest picture in the set}
\label{fig:set#1large}
\end{subfigure}
\end{figure*}
}
\begin{document}
\includegraphicsset{1}
\end{document}


\stackinsetto overlay text on an image. You could just as easy make the overlay/inset a\rule, rotated or not. – Steven B. Segletes Jan 08 '15 at 14:22