I would like to use the tikz package to draw over an image. I followed the instructions found here.
\documentclass[twocolumn,10pt]{article}
\usepackage{lipsum}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[anchor=south west,inner sep=0] at (0,0) {\includegraphics[width=1.0\textwidth]{image}};
\draw[red] (7.5,5.3) rectangle (9.4,6.2);
\end{tikzpicture}
\lipsum
\end{document}
However I'm working in two columns mode and, since my image is large and should span along the entire width of the page, the text overlaps with the image as shown here:
Generally I use * to overcome the problem but the enviroment tikzpicture doesn't allow it.


\begin{tikzpicture} \node (n1) [inner sep=0] {\includegraphics[width=\linewidth]{image/ultimate1}}; \node (n2) [red,ultra thick,rounded corners, minimum width=19mm, minimum height=9mm, above5mm] (n1.south) {}; \end{tikzpicture}. See if it fit in one column of your document. For more particular help you need to provide MWE. – Zarko Feb 16 '20 at 14:01figure*and than try with your code snippet. your question is unclear. – Zarko Feb 16 '20 at 14:04