I'm working with the IEEE conference teamplate on Overleaf, a two-collumn teamplate. I used the tool Diagram to draw figure and now I'm exporting the figure to pdf and then will import to the paper like this:
\begin{figure*}[ht!]
\centering \includegraphics[width=\textwidth]{figures/figure.pdf}
\end{figure*}
I know that with the option [width=\textwidth], the figure will be scaled to the width of current text. But with scaling, my figure seem to be a litte blur. Because the original width is different from the absolute value of \textwidth. My question is what is the absolute value of \textwidth? Or how to print it out in latex code?
Here, Diagram allows to export figure to the expected size, I'm not sure about the unit but I think 1346 here means 1346 pt:

\documentclass{article} \begin{document} \the\textwidth \end{document}. – Οὖτις Mar 08 '23 at 10:20\the\textwidthshows the width in pt=1/72.27". You can use packageprintlento print in another unit, e.g., in bp=1/72" (usually used by other applications as point size). – cabohah Mar 08 '23 at 10:29\begin{figure*}[ht!]is wrong,figure*does not have anhoption, probably it should be\begin{figure*}so you also allow the figure to be full page. – David Carlisle Mar 08 '23 at 10:54