I am working on a document which is primarily in landscape. However one page contains a portrait image and I would like to display it in upright position. Basically I am asking if there is a reverse version of the typical portrait to landscape page orientation questions that is usually asked.
[EDIT: To clarify, I want to display the Page 2 in portrait when using a PDF viewer]
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=0.7in, landscape]{geometry}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{rotating}
\usepackage{blindtext}
\begin{document}
\Blindtext
\begin{sidewaysfigure}
\centering
\includegraphics[width=\linewidth]{PrettyLisa.jpg}
\caption{Mona Lisa}
\label{Mona}
\end{sidewaysfigure} %%%%How can I display this in portrait orientation?%%%%
\end{document}

[width=\linewidth]by say[height=.7\textheight]– David Carlisle Dec 01 '20 at 12:19