0

我可以使用 PHP 或 BASH 文件从扫描仪获取图像并进行处理吗?如果是,我该怎么做?

4

2 回答 2

2

scanadfSANE 项目中的可用于从命令行驱动扫描仪。阅读手册页以获取可用选项。

于 2012-12-29T17:11:52.283 回答
0

正如Thomas所提到的,SANE PROJECT使您能够通过调用scanimage几个参数来扫描命令行。

要实现扫描文档并将其移动到特定位置的目标:

<?php
$mode = 'gray';
$reso = 150;
$path = '/my/document/path/myFile.jpg';

/* scan the document in Gray Scale, with 150dpi of resolution
 * pipe a call to convert the resulting document to a JPEG
 * save the document to your desired location
 */ 
exec("scanimage --mode ".$mode." --resolution ".$reso." | pnmtojpeg > ".path);

// check if the document exists...
// save the contents of $path to the database...
?>
于 2013-08-14T23:28:53.877 回答