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 5.3/5.4 和 GD。
我使用以下代码创建了一个图像画布:
$col = imagecreatetruecolor($width, $height); $bg = ImageColorAllocate($col, 42, 208, 77);
完成此操作后,我会画一些图。这一切都很好。
但是,一旦完成,我需要“擦除”图像顶部的一定百分比。
一旦我确定了要“擦除”的区域,我该如何擦除以便只留下背景?(或删除背景也可以)