我正在尝试使用带有以下对象的 perl 模块 GD:SecurityImage 从文本创建安全图像:
my $image = GD::SecurityImage->new(
width => 220,
height => 60,
lines => 5,
scramble => 1,
angle => 45,
gd_font => 'giant',
);
$image->create( normal => 'circle' );
$image->particle(30, 70);
但是结果图像中的文本没有 45 度角的文本,而是随机的。此外,如果我设置 scramble = 0 并且角度 = 45,则文本不会以该角度旋转,文本只是图像中的默认值,如附加屏幕中所示。
请帮帮我,我在这里做错了什么?
注意:图像是加扰 = 0;