6

What options do I have for an image scanning framework on Mac OS X? I'm not looking for an OCR library. Just something that will do the actual scanning and importing to PDF or comparable format.

robottobor
  • 11,595
  • 11
  • 39
  • 37
  • Dynamic Web TWAIN is about to release a TWAIN plugin for Mac browsers. http://www.dynamsoft.com/Products/Dynamic-Mac-TWAIN.aspx – flysakura Nov 08 '11 at 07:02

3 Answers3

7

On Snow Leopard and later, Image Kit includes classes for scanning and importing from cameras. There's also a lower-level framework, ImageCaptureCore. Both frameworks are documented in the Image Capture Applications Programming Guide in Apple's Documentation Archive.

On Leopard, you'll have to use Image Capture, the less-documented, less-modern, less-reliable API. (This stands in contrast to the Image Capture application, which has always been great.) I hope you can require Snow Leopard.

Rich
  • 7,348
  • 4
  • 34
  • 54
Peter Hosey
  • 95,783
  • 15
  • 211
  • 370
  • 1
    As usual, Apple has broken all of its documentation links. [Here's the guide.](https://developer.apple.com/library/archive/documentation/Carbon/Conceptual/ImageCaptureServicesProgrammingGuide/01Introduction/01Introduction.html#//apple_ref/doc/uid/TP40005196) – rob mayoff Jul 16 '19 at 02:02
2

I know this post is old but it is still very hard to find any good information about this topic on the web. Long story short .. I made a bundle (including multiple selection support) for it. Check it out (open source) on Github: https://github.com/ckteebe/SPScannerCaptureWindow

ckteebe
  • 101
  • 1
  • 3
-1

Not a framework per se but the Apple-supplied Image Capture.app, in /Applications in recent releases of OS X, supports various popular scanners and will scan to various image file formats or PDFs.

Ned Deily
  • 83,389
  • 16
  • 128
  • 151