I'm having issues including large images in landscape mode
This is about as large as the image will render

Changing the size makes the orientation switch

Ideally I'd like to be able to have a large image on this landscape page, that's the reason that I've made the page landscape.
Also, it's important that the page within the pdf is rotated 90 degrees (which is currently the case), so that when reading the document on a screen I don't have to tilt my head to view landscape pages. I would like to retain that in any solution please.
Here's the example code
\documentclass{article}
\usepackage[margin=1.0in]{geometry}
% so that i can crop images
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{lscape}
\usepackage{rotating}
\usepackage{epstopdf}
\usepackage{pdflscape}
\usepackage{showframe}
\usepackage[paper=portrait,pagesize]{typearea}
% this is needed for positioning images
\usepackage{float}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Save the image from this link : https://i.imgur.com/CN1gsF4.png
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Required this package for including graphics and landscaping
% \usepackage[paper=portrait,pagesize]{typearea}
% Link to the stack post
% https://tex.stackexchange.com/a/430619/69118
%%%%%%%%%%%%%%%%
% IMAGE TEST ONE
%%%%%%%%%%%%%%%%
\clearpage
\newpage
% Probably don't want the header for this page, so suppress it
% \thispagestyle{plain}
\thispagestyle{empty}
\newgeometry{left=1cm,bottom=0.1cm}
\KOMAoptions{paper=landscape,pagesize}
\recalctypearea
\begin{figure}[ht]
\fbox{%
\includegraphics[width=0.7\textwidth]{test.png}
}
\end{figure}
\newpage
\KOMAoptions{paper=portrait,pagesize}
\recalctypearea
\restoregeometry
\cleardoublepage
\end{document}
For when / if the image stops being hosted here's it's size :
file image-testing.png
image-testing.png: PNG image data, 1600 x 1200, 8-bit/color RGBA, non-interlaced
Edit - code for zarko
\documentclass{article}
\usepackage[margin=1.0in,bottom=1.0in]{geometry}
% so that i can crop images
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage{epstopdf}
\usepackage{pdflscape}
% this is needed for positioning images
\usepackage{float}
\usepackage{lipsum}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Save the image from this link : https://i.imgur.com/CN1gsF4.png
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Required this package for including graphics and landscaping
% \usepackage[paper=portrait,pagesize]{typearea}
% Link to the stack post
% https://tex.stackexchange.com/a/430619/69118
%%%%%%%%%%%%%%%%
% IMAGE TEST ONE
%%%%%%%%%%%%%%%%
\clearpage
\newpage
\thispagestyle{empty}
\begin{landscape}
\centering
\thispagestyle{empty}
\begin{figure}%[htb]
\includegraphics[width=\linewidth]{test.png}
\caption{This is some caption text that I'm using to see what this looks like with caption text. I'm not too sure about
adding text in the landscape environment, as I }
\end{figure}
\end{landscape}
\end{document}


