I am currently writing a research papers and the reviewers asked me to increase the image size. Currently, it is shown as:
The problem is that the IJSEKE journal template only allows images to be set in the same width as the text. Trying to increase the image with scaling only moves it to the right side but not the left. See the image example shown here:

I have tried making image vertical as well by putting \begin{landscape} next to image code and the output is as under:

But that still doesn't work well.
I have tried changing the orientation of the page to landscape but no success.
Is there a way I can remove the indentation on the left side of the image so that reviewers can see the image clearly? or any other solution wrt to journal's template
MWE is
\documentclass{ws-ijseke}
\usepackage{lipsum}
%\usepackage{lscape}
\begin{document}
\markboth{Author}
{Paper title}
\title{Title}
\section{Adding Image}
\lipsum[1-3]
%\begin{landscape}
\begin{figure*}[htb]%
\centering
\includegraphics[width=\textwidth]{figures/test.png}
\caption{The caption}\label{fig2}
\end{figure*}
%\end{landscape}
\lipsum[1-3]
\end{document}

\clipboxto the image(trimclippackage), in order to remove the dead-space. – Steven B. Segletes Feb 08 '23 at 16:04\makebox[\textwidth]{\includegraphics[width=1.3\textwidth]{example-image}}– Steven B. Segletes Feb 13 '23 at 03:01