Help for this page

Select Code to Download


  1. or download this
        my $h = manage_font([ $mw, $font_family, $font_size ]);
    
  2. or download this
        # Create a font 1 point smaller than $font_size
        my $h = manage_font([ $mw, $font_family, $font_size ], "-1");
    
  3. or download this
        manage_font($h, "+7")    # Increase font size by 7 points
    
  4. or download this
    use strict;
    use warnings;
    ...
    
        return $h_font;
    }