| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * User: lang
- * Date: 2023/9/22
- * Time: 9:21
- */
- use Kkokk\Poster\Facades\Poster;
- require '../../vendor/autoload.php';
- Poster::extension('imagick')
- ->config(
- [
- 'path' => __DIR__ . '/../poster/test1.png',
- ]
- )
- ->buildIm(500, 600, [255, 255, 255, 127], true)
- ->buildBg(400, 400, [
- 'color' => [
- [0, 0, 162],
- [0, 255, 162],
- [255, 255, 162],
- [255, 0, 0],
- [0, 255, 0]
- ],
- 'alpha' => 0,
- 'to' => 'bottom',
- 'radius' => 20,
- 'content_alpha' => 0
- ], true, 'center', 'center', 0, 0, function ($im) {
- /** @var \Kkokk\Poster\Image\Builder $im */
- $im->buildText('明月几时有,把酒问青天。不知天上宫阙,今夕是何年。', 'center', 100, 20, [0, 0, 0, 1]);
- })
- ->stream(); # 创建画布
|