I was following the solution given here to try get this effect:

but this solution was unsuccessful. This is what outputs from the code given below:
Can you help me get the text to show up next to the figures as in the first image above?
Here is the code that I have so far:
\documentclass{article}
\usepackage{graphicx}
\newcommand*{\authorimg}[1]{%
\raisebox{-.3\baselineskip}{%
\includegraphics[
height=\baselineskip,
width=\baselineskip,
keepaspectratio,
]{#1}%
}%
}
\begin{document}
\begin{itemize}
\item[\authorimg{example-image-a}] FONTS\\The range of fonts on your\\
computer is often highly distinctive\\(unless you only have the fonts\\the machine came with)
\item[\authorimg{example-image-b}] SCREEN SIZE\\Though easily switched, this\\setting can be a useful aspect of\\your devices's fingerprint
\end{itemize}
\end{document}




\baselineskip? I would guess you want an image of the same height as the words on the right? – Troy Apr 25 '17 at 01:23