setEncoding(new Encoding('UTF-8')) ->setErrorCorrectionLevel(new ErrorCorrectionLevelLow()) ->setSize($size)//大小 ->setMargin($margin)//边距 ->setRoundBlockSizeMode(new RoundBlockSizeModeMargin()) ->setForegroundColor(new Color(0, 0, 0)) ->setBackgroundColor(new Color(255, 255, 255)); $result = $writer->write($qrCode); $result->getString(); $result->saveToFile($file_path); } $file_url = url('/') . '/storage/qrcode/' . $file_name; return $file_url; } }