瀏覽代碼

:sparkles:

smiley 2 年之前
父節點
當前提交
a2ea82f4ed
共有 1 個文件被更改,包括 21 次插入0 次删除
  1. 21 0
      examples/Readme.md

+ 21 - 0
examples/Readme.md

@@ -0,0 +1,21 @@
+# php-qrcode examples
+
+## Simple examples that demonstrate the different output types
+
+- [image](./image.php): Raster images via the [GD extension](https://www.php.net/manual/de/book.image.php)
+- [ImageMagick](./imagick.php): Raster Images via [ImageMagick](https://imagemagick.org/)
+- [SVG](./svg.php): [Scalable Vector Graphics](https://developer.mozilla.org/en-US/docs/Web/SVG)
+- [HTML](./html.php): HTML markup
+- [FPDF](./fpdf.php): PDF output via [FPDF](http://www.fpdf.org/)
+- [String](./text.php): String output
+
+
+## Advanced output examples
+
+- [Custom output](./custom_output.php): a simple example that demonstrates the usage of custom output classes
+- [GD Image with logo](./imageWithLogo.php): a logo on top of the QR Code
+- [GD image with text](./imageWithText.php): description text under the QR Code ([#35](https://github.com/chillerlan/php-qrcode/issues/35))
+
+## Other examples
+
+- [Interactive output](./qrcode-interactive.php): interactive demo (via [index.html](./index.html))