in reply to Imager font problem

Where is the Perl code that demonstrates the issue?

What OS and version are you using? Are you using system Perl or a Perl that you have installed? What version of Perl?

Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond

Replies are listed 'Best First'.
Re^2: Imager font problem
by Anonymous Monk on Apr 17, 2024 at 19:40 UTC
    Thanks for the replies. Sorry for the confusion. Let me rephrase the question: Why does Imager install on macOS Sonoma without truetype font support, and how can that be enabled? The entire GUI of this computer is rendered with truetype fonts! Does Imager need to update their installer? Relevant code from Imager::Font:
    use Imager; print "Has truetype" if $Imager::formats{tt}; print "Has t1 postscript" if $Imager::formats{t1}; print "Has Win32 fonts" if $Imager::formats{w32}; print "Has Freetype2" if $Imager::formats{ft2};
      macOS Sonoma 14.3 Perl v5.38.2 Imager 1.023:
      perl -e 'use Imager; print "Has truetype" if $Imager::formats{tt}; print "Has t1 postscript" if $Imager::formats{t1}; print "Has Win32 fonts" if $Imager::formats{w32}; print "Has Freetype2" if $Imager::formats{ft2};'
      > Has Freetype2