Consider the code
\documentclass{article}
\usepackage{graphicx,xcolor}
\usepackage{transparent}
\begin{document}
\begin{figure}[!htb]
\centering
\includegraphics[width=20em,height=30em]{example-image}\llap{\texttransparent{0.5}{\color{blue!90}\rule{20em}{30em}}}
\end{figure}
\vspace*{-45pt}
\hskip 150pt\includegraphics[scale=4.5]{Blue_Image.png}
\end{document}
which produces
Notice the lower blue rectangle is slightly darker than the upper blue image.
I would like them to be the same; and it seems that I may accomplish this by slightly lightening (if possible), the lower includegraphics png image.
I am under the impression that I cannot change the color of an includegraphics image in Latex, but it seems reasonable that one might be able to simply lighten or darken it. Perhaps I am wrong.
QUESTION: Is there a way to lighten or darken a png image via the includegraphics command; and if so, how may one do this?
Thank you.



\includegraphics[lighten=0.5]{}should lighten up each pixel by 50%? (which would be equivalent to putting a 50% transparent white rectangle over the top of the image or perhaps doing a screen blend with a grey rectangle.) – David Purton Dec 30 '22 at 05:15\includegraphics[lighten=0.5]{}butlighten=0.5seems not to work for me. – DDS Dec 30 '22 at 05:23lightenthing. It's not a feature – David Purton Dec 30 '22 at 05:25includegraphics. But again, I am not trying to "change" the color---just lighten (or darken it) if possible. – DDS Dec 30 '22 at 05:27