Re: [sane-devel] scanimage / tesseract interoperability

2014-05-19 Thread Jeff Breidenbach
Implementation was a little intrusive because there is no recovery from calling freopen() on stdout. This preliminary patch follows the recommendations of the C FAQ and introduces an explicit stream variable. I've only done light testing. http://c-faq.com/stdio/undofreopen.html $ scanimage

[sane-devel] fujitus scansnap ix500 (not found by sane-find-scanner)

2014-05-19 Thread andreo73
Hi, I'm trying to get a ix500 work on my pc with ubuntu 14.04 freshly installed; the scanner is attached through usb cable to a usb2 port (my pc has only usb2 ports) when the usb cable is first connected (or the scanner is switched on), dmesg reports usb 2-6: new high-speed USB device number 6

Re: [sane-devel] fujitus scansnap ix500 (not found by sane-find-scanner)

2014-05-19 Thread m. allan noah
Upgrade to sane-backends 1.0.24 allan On Mon, May 19, 2014 at 11:23 AM, andreo73 andrea.bar...@gmail.com wrote: Hi, I'm trying to get a ix500 work on my pc with ubuntu 14.04 freshly installed; the scanner is attached through usb cable to a usb2 port (my pc has only usb2 ports) when the usb

[sane-devel] gscan2pdf v1.2.5 released

2014-05-19 Thread Jeffrey Ratcliffe
gscan2pdf - A GUI to produce a multipage PDF or DjVu from a scan. http://gscan2pdf.sourceforge.net/ Only five clicks are required to scan several pages and then save all or a selection as a PDF or DjVu file, including metadata if required. gscan2pdf can control regular or sheet-fed (ADF)

Re: [sane-devel] scanimage / tesseract interoperability

2014-05-19 Thread Jeff Breidenbach
Implemented and tested. Please consider for inclusion. happy-batch-1.0.diff.gz Description: GNU Zip compressed data -- sane-devel mailing list: sane-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/sane-devel Unsubscribe: Send mail with subject unsubscribe

Re: [sane-devel] scanimage / tesseract interoperability

2014-05-19 Thread Jeff Breidenbach
Testing found an error path with a double fclose. Tiny tweak to make that impossible. - if (0 != fclose(ofp)) + if (!ofp || 0 != fclose(ofp)) names-to-stdout-1.2.diff.gz Description: GNU Zip compressed data -- sane-devel mailing list: sane-devel@lists.alioth.debian.org