.. _doxcsid-interface_p1_1_1_camera_sdk_1_1_i_stored_image_handle: IStoredImageHandle Interface ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Definition ^^^^^^^^^^ *Namespace:* ``P1.CameraSdk`` Lightweight representation of an image file in the camera :ref:`More...` .. ref-code-block:: csharp :class: doxyrest-overview-code-block public interface IStoredImageHandle : IDisposable .. _csdetails-interface_p1_1_1_camera_sdk_1_1_i_stored_image_handle: Remarks ^^^^^^^ Lightweight representation of an image file in the camera This class is the interface to image files returned by the camera. It is lightweight and contains only a limited set of image metadata.It has no actual image bitmap data. You use this *image item* 's *id* to query for extra info about an image or the fetch preview or tiles of the image.You can also request the entire IIQ file! .. rubric:: See also: :ref:`Camera.AllImages `, :ref:`INotificationEvent.StoredImageHandle ` Properties ^^^^^^^^^^ .. toctree:: :hidden: Id Date Filename Device .. list-table:: :widths: 30 70 * - :ref:`Id ` - Gets the *id* of this image. Can change after a camera reboot or a storage swap. * - :ref:`Date ` - The capture date & time for this image. As a Unix Epoch timestamp. * - :ref:`Filename ` - The filename of the image's IIQ file * - :ref:`Device ` - A bitmask defining on what devices (XQS/SD), the image is stored. Methods ^^^^^^^ .. toctree:: :hidden: RequestBasicImageInfoAsync BasicImageInfo RequestImageAsync RequestPreviewAsync Preview RequestTileAsync Tile DeleteImage RateImage .. list-table:: :widths: 33 67 * - :ref:`RequestBasicImageInfoAsync() ` - Requests a set of commonly used meta data about the image. * - :ref:`BasicImageInfo(UInt32 timeoutMs=0) ` - A blocking (synchronous) version of :ref:`RequestBasicImageInfoAsync ` * - :ref:`RequestImageAsync() ` - Request a full IIQ file of the image * - :ref:`RequestPreviewAsync(ImageFormat format=ImageFormat.RGB24) ` - Request the preview (thumbnail) for an image. * - :ref:`Preview(ImageFormat format, UInt32 timeoutMs=0) ` - A blocking (synchronous) version of :ref:`RequestPreviewAsync `. * - :ref:`RequestTileAsync(TileRequest tileArguments) ` - Request a *tile* : a (scaled) crop of the full image * - :ref:`Tile(TileRequest tileArguments, UInt32 timeoutMs=0) ` - A blocking (synchronous) version of :ref:`RequestTileAsync ` * - :ref:`DeleteImage() ` - Delete an image from the camera storage. * - :ref:`RateImage(StarRating rating) ` - Change the star-rating of an image.