IPicture (Image object)

1. Definition

The Image object is of type IPicture and derives from ISlideShowObject.

IPicture inherits from ISlideShowObject
   function Filename: IFilename;
   function Sound: ISound;
   function Content: IPictureContent;
 end; 

2. Methods

  • Object creation

    function CreatePictureObject: IPicture;
    
  • An Image object requires a file name for the stored image. It is stored as IFilename in the Image object:

    function Filename: IFilename;
    
  • An Image object can contain a sound track. Its data type is ISound

    function Sound: ISound;
    
  • Access to the content of an Image object (i.e. the image itself without metadata) of type IPictureContent

    function Content: IPictureContent;