Index.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace addons\qrcode\controller;
  3. use Endroid\QrCode\QrCode;
  4. use think\addons\Controller;
  5. use think\Response;
  6. /**
  7. * 二维码生成
  8. *
  9. */
  10. class Index extends Controller
  11. {
  12. protected $model = null;
  13. public function _initialize()
  14. {
  15. parent::_initialize();
  16. }
  17. public function index()
  18. {
  19. return $this->view->fetch();
  20. }
  21. // 生成二维码
  22. public function build()
  23. {
  24. $text = $this->request->get('text', 'hello world');
  25. $size = $this->request->get('size', 250);
  26. $padding = $this->request->get('padding', 15);
  27. $errorcorrection = $this->request->get('errorcorrection', 'medium');
  28. $foreground = $this->request->get('foreground', "#ffffff");
  29. $background = $this->request->get('background', "#000000");
  30. $logo = $this->request->get('logo');
  31. $logosize = $this->request->get('logosize');
  32. $label = $this->request->get('label');
  33. $labelfontsize = $this->request->get('labelfontsize');
  34. $labelhalign = $this->request->get('labelhalign');
  35. $labelvalign = $this->request->get('labelvalign');
  36. // 前景色
  37. list($r, $g, $b) = sscanf($foreground, "#%02x%02x%02x");
  38. $foregroundcolor = ['r' => $r, 'g' => $g, 'b' => $b];
  39. // 背景色
  40. list($r, $g, $b) = sscanf($background, "#%02x%02x%02x");
  41. $backgroundcolor = ['r' => $r, 'g' => $g, 'b' => $b];
  42. $qrCode = new QrCode();
  43. $qrCode
  44. ->setText($text)
  45. ->setSize($size)
  46. ->setPadding($padding)
  47. ->setErrorCorrection($errorcorrection)
  48. ->setForegroundColor($foregroundcolor)
  49. ->setBackgroundColor($backgroundcolor)
  50. ->setLogoSize($logosize)
  51. ->setLabel($label)
  52. ->setLabelFontSize($labelfontsize)
  53. ->setLabelHalign($labelhalign)
  54. ->setLabelValign($labelvalign)
  55. ->setImageType(QrCode::IMAGE_TYPE_PNG);
  56. $fontPath = ROOT_PATH . 'public/assets/fonts/SourceHanSansK-Regular.ttf';
  57. if (file_exists($fontPath)) {
  58. $qrCode->setLabelFontPath($fontPath);
  59. }
  60. if ($logo) {
  61. $qrCode->setLogo(ROOT_PATH . 'public/assets/img/qrcode.png');
  62. }
  63. //也可以直接使用render方法输出结果
  64. //$qrCode->render();
  65. return new Response($qrCode->get(), 200, ['Content-Type' => $qrCode->getContentType()]);
  66. }
  67. }