Share via


Acquiring Images

The Picture Acquisition APIs are used to add image acquisition functionality to an application. The first step in an acquisition experience is generally to select a device to acquire images from. The IPhotoAcquireDeviceSelectionDialog interface provides a dialog box that enables users to choose a device to acquire images from.

At the start of an acquisition session, an application may also need to select settings such as file name formats, as well as whether to rotate images, to prompt for tags, or to erase photos from the camera after importing them. The IPhotoAcquireOptionsDialog interface provides a dialog box to obtain acquisition settings from the user. The IPhotoAcquireSettings interface is used to programmatically select the acquisition settings.

Once a device has been selected, an application uses the CreatePhotoSource method of the IPhotoAcquire interface to initialize an IPhotoAcquireSource object representing the image source. At this point, the application may choose to use the methods of the IPhotoAcquireSource interface to manage the list of items to acquire, or to access device-specific properties and acquisition settings.

To acquire items from a device, an application uses the IPhotoAcquire::Acquire method.

To work with individual items either before or during transfer, an application may use the IPhotoAcquireItem interface.

The IPhotoAcquireProgressCB interface enables the application to override the default behavior or supply additional functionality in response to various acquisition events, such as the end of an item transfer or the start of item deletion. When extended functionality is desired, the application supplies a custom implementation of the IPhotoAcquireProgressCB, in which the methods corresponding to the acquisition events to handle are implemented. These methods are implemented in addition to the methods inherited from IUnknown. Then the application passes the object that implements IPhotoAcquireProgressCB to IPhotoAcquire::Acquire (to handle events during photo acquisition) or IPhotoAcquireSource::InitializeItemList (to handle events during photo enumeration).

During either enumeration or acquisition of items from the photo source, the IPhotoProgressDialog interface may be used to indicate progress.