gpt4 book ai didi

php - TCPDF 绘制带边框和填充的圆

转载 作者:行者123 更新时间:2023-12-02 01:26:02 26 4
gpt4 key购买 nike

我在我的 php 应用程序中使用 TCPDF,但我没有找到一种方法来绘制一个带有黑色边框并填充另一种颜色的圆;

这里是我的代码:

$style_bollino = array('width' => 0.25, 'dash' => 0, 'color' => array(0, 0, 0));
$this->SetAlpha(1);
$this->Circle(35, 100, 4, 0, 360, 'C', $style_bollino, array(210, 0, 0));

我也尝试将“C”参数更改为“F”或 null,但我没有得到结果。

我不知道我错过了什么

亲切的问候,马特

最佳答案

根据 one of their examples , 有一种单行的方法,只需将 'DF' 传递给 $style 参数:

$this->Circle(35, 100, 4, 0, 360, 'DF', $style_bollino, array(210, 0, 0));

有关此参数的选项列表,请查看 TCPDF_STATIC::getPathPaintOperator() 函数中的 PHPDoc。

关于php - TCPDF 绘制带边框和填充的圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37056592/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com