bg.php 915 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * User: lang
  4. * Date: 2023/9/22
  5. * Time: 9:21
  6. */
  7. use Kkokk\Poster\Facades\Poster;
  8. require '../../vendor/autoload.php';
  9. Poster::extension('imagick')
  10. ->config(
  11. [
  12. 'path' => __DIR__ . '/../poster/test1.png',
  13. ]
  14. )
  15. ->buildIm(500, 600, [255, 255, 255, 127], true)
  16. ->buildBg(400, 400, [
  17. 'color' => [
  18. [0, 0, 162],
  19. [0, 255, 162],
  20. [255, 255, 162],
  21. [255, 0, 0],
  22. [0, 255, 0]
  23. ],
  24. 'alpha' => 0,
  25. 'to' => 'bottom',
  26. 'radius' => 20,
  27. 'content_alpha' => 0
  28. ], true, 'center', 'center', 0, 0, function ($im) {
  29. /** @var \Kkokk\Poster\Image\Builder $im */
  30. $im->buildText('明月几时有,把酒问青天。不知天上宫阙,今夕是何年。', 'center', 100, 20, [0, 0, 0, 1]);
  31. })
  32. ->stream(); # 创建画布