For the following code, I don't have the same result in Ubuntu 20.04 and Ubuntu 22.04 with TexLive.
\documentclass{article}
\usepackage[left=2.00cm, right=3.00cm, top=4.00cm, bottom=3.00cm,showframe]{geometry}
\usepackage{pstricks-add}
\usepackage{tikz}
\newlength{\pssize}\setlength{\pssize}{1cm}
\newcommand{\logotextformat}{\sffamily \bfseries \large}
\newcommand{\logoimg}[2]{
\begin{pspicture}(#1,-#2)
\newrgbcolor{curcolor}{0.88 0.15 0.11}
\psset{
unit=0.7pt,
linestyle=none,
fillstyle=solid,
fillcolor=curcolor
}
\pscustom{
\newpath
\moveto(74, 18)
\lineto(56, 18)
\lineto(56, 12)
\lineto(68, 12)
\lineto(68, 12)
\curveto(67, 7)(63, 5)(57, 5)
\curveto(50, 5)(45, 10)(45, 17)
\curveto(45, 24)(50, 30)(57, 30)
\curveto(63, 30)(67, 27)(69, 23)
\lineto(74, 25)
\curveto(71, 32)(65, 35)(57, 35)
\curveto(47, 35)(39, 27)(39, 17)
\curveto(39, 7)(47, 0)(57, 0)
\curveto(62, 0)(66, 2)(69, 5)
\lineto(69, 1)
\lineto(74, 1)
\lineto(74, 17)
\lineto(74, 17)
\lineto(74, 17)
\closepath
}
\pscustom{
\newpath
\moveto(27, 61)
\lineto(5, 61)
\lineto(5, 75)
\lineto(0, 75)
\lineto(0, 42)
\lineto(5, 42)
\lineto(5, 56)
\lineto(27, 56)
\lineto(27, 42)
\lineto(33, 42)
\lineto(33, 75)
\lineto(27, 75)
\closepath
}
\end{pspicture}
}
\newcommand{\placelogo}[2]{% \logo{<left>}{<top>}
\begin{tikzpicture}[remember picture,overlay, align=center,]
\node(logo) at ([xshift=#1, yshift=-#2] current page.north west)
[anchor=north west] {\logoimg{#1}{#2}};
\end{tikzpicture}\vspace*{-\baselineskip}}
\begin{document}
\placelogo{2cm}{3cm}
\end{document}
Build
I build the project with
latexmk -xelatex test.tex
TeX 3.14159265 (TeX Live 2019/Debian)
The logo is visible as expected.
TeX 3.141592653 (TeX Live 2022/dev/Debian)
Logo not displayed.




xelatex-unsafe(or compile with lualatex), see e.g. https://tex.stackexchange.com/a/642533/2388 – Ulrike Fischer Feb 05 '23 at 13:36xelatex-unsafeis not available you can usexelatex -output-driver="xdvipdfmx -i dvipdfmx-unsafe.cfg -q -E" yourfile.texas mentioned in the question that Ulrike linked. – Marijn Feb 05 '23 at 13:37