登录 注册
当前位置:主页 > 资源下载 > 10 > php-zbarcode:用于读取条形码PHP扩展。 使用ImageMagick(http:www.imagemagick.org)提供图像支持,并使用zbar(http:zbar.sourceforge.net)扫描条形码下载

php-zbarcode:用于读取条形码PHP扩展。 使用ImageMagick(http:www.imagemagick.org)提供图像支持,并使用zbar(http:zbar.sourceforge.net)扫描条形码下载

  • 更新:2024-09-13 23:21:50
  • 大小:48KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

简单的扩展以读取图像中的条形码 于2018-12-05升级 支持PHP7,并修复了一些可能导致崩溃的错误。 基本用法: <?php /* Create new image object */ $image = new ZBarCodeImage("test.jpg"); /* Create a barcode scanner */ $scanner = new ZBarCodeScanner(); /* Scan the image */ $barcode = $scanner->scan($image); /* Loop through possible barcodes */ if (!empty($barcode)) { foreach ($barcode as $code) { printf("Found type %s barcode with data %s\n", $