PHP imagepsslantfont 图像GD库函数

  • 定义和用法

    imagepsslantfont - 倾斜某字体
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 不支持
    注意: 此函数仅在 PHP 编译时指定了 --with-t1lib[=DIR] 时可用。
  • 语法

    imagepsslantfont ( resource $font_index , float $slant )
    
    imagepsslantfont() 用 slant 参数指定的倾斜值来倾斜 font_index 参数指定的字体。
  • 参数

    参数 必需的 描述
    font_index 字体资源,由 imagepsloadfont() 返回。
    slant 倾斜的水平。
  • 返回值

    成功时返回 TRUE, 或者在失败时返回 FALSE。
  • 示例

     
    // Load a .pfb font file
    $font = imagepsloadfont('./px3l.pfb');
    
    // Slant the font by 22.5
    imagepsslantfont($font, 22.5);
    
    // Do any operations with the font here
    
    // Free the font from memory
    imagepsfreefont($font);
    
  • 相关函数

    imagepsfreefont() - 释放一个 PostScript Type 1 字体所占用的内存