Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不明白为什么在PHP使用该imageantialias功能时需要传入一个 Bool 来说明是否要启用抗锯齿。
PHP
imageantialias
调用带有参数的函数来表示不做任何事情感觉很反直觉。
有没有用我失踪的假来调用它的用例?
传递 false 并不告诉函数什么都不做,而是关闭抗锯齿(如果它打开的话)。一个用例将使用抗锯齿绘制到图像,稍后想要在不使用抗锯齿的情况下绘制更多图像。
这是一个启用/禁用功能。
所以如果我打电话:
imageantialias($image, TRUE);
...然后为$image. 如果我再打电话:
$image
imageantialias($image, FALSE);
我再次禁用了它。