| 
    OpenShot Library | libopenshot
    0.4.0
    
   | 
 
This class uses the ImageMagick++ libraries, to open image files, and return openshot::Frame objects containing the image. More...
#include <ImageReader.h>
Public Member Functions | |
| void | Close () override | 
| Close File.  More... | |
| CacheBase * | GetCache () override | 
| Get the cache object used by this reader (always returns NULL for this object)  More... | |
| std::shared_ptr< Frame > | GetFrame (int64_t requested_frame) override | 
| ImageReader (const std::string &path, bool inspect_reader=true) | |
| Constructor for ImageReader.  More... | |
| bool | IsOpen () override | 
| Determine if reader is open or closed.  More... | |
| std::string | Json () const override | 
| Generate JSON string of this object.  More... | |
| Json::Value | JsonValue () const override | 
| Generate Json::Value for this object.  More... | |
| std::string | Name () override | 
| Return the type name of the class.  More... | |
| void | Open () override | 
| Open File - which is called by the constructor automatically.  More... | |
| void | SetJson (const std::string value) override | 
| Load JSON string into this object.  More... | |
| void | SetJsonValue (const Json::Value root) override | 
| Load Json::Value into this object.  More... | |
  Public Member Functions inherited from openshot::ReaderBase | |
| void | DisplayInfo (std::ostream *out=&std::cout) | 
| Display file information in the standard output stream (stdout)  More... | |
| openshot::ClipBase * | ParentClip () | 
| Parent clip object of this reader (which can be unparented and NULL)  More... | |
| void | ParentClip (openshot::ClipBase *new_clip) | 
| Set parent clip object of this reader.  More... | |
| ReaderBase () | |
| Constructor for the base reader, where many things are initialized.  More... | |
| virtual | ~ReaderBase ()=default | 
Additional Inherited Members | |
  Public Attributes inherited from openshot::ReaderBase | |
| openshot::ReaderInfo | info | 
| Information about the current media file.  More... | |
  Protected Attributes inherited from openshot::ReaderBase | |
| openshot::ClipBase * | clip | 
| Pointer to the parent clip instance (if any)  More... | |
| std::recursive_mutex | getFrameMutex | 
| Mutex for multiple threads.  More... | |
This class uses the ImageMagick++ libraries, to open image files, and return openshot::Frame objects containing the image.
Definition at line 55 of file ImageReader.h.
| ImageReader::ImageReader | ( | const std::string & | path, | 
| bool | inspect_reader = true  | 
        ||
| ) | 
Constructor for ImageReader.
Opens the media file to inspect its properties and loads frame 1, iff inspect_reader == true (the default). Pass a false value in the optional parameter to defer this initial Open()/Close() cycle.
When not inspecting the media file, it's much faster, and useful when you are inflating the object using JSON after instantiation.
Definition at line 25 of file ImageReader.cpp.
      
  | 
  overridevirtual | 
Close File.
Implements openshot::ReaderBase.
Definition at line 83 of file ImageReader.cpp.
Referenced by ImageReader(), and SetJsonValue().
      
  | 
  inlineoverridevirtual | 
Get the cache object used by this reader (always returns NULL for this object)
Implements openshot::ReaderBase.
Definition at line 77 of file ImageReader.h.
      
  | 
  overridevirtual | 
Get an openshot::Frame object for a specific frame number of this reader. All numbers return the same Frame, since they all share the same image data.
| requested_frame | The frame number that is requested. | 
Implements openshot::ReaderBase.
Definition at line 94 of file ImageReader.cpp.
      
  | 
  inlineoverridevirtual | 
Determine if reader is open or closed.
Implements openshot::ReaderBase.
Definition at line 87 of file ImageReader.h.
      
  | 
  overridevirtual | 
Generate JSON string of this object.
Implements openshot::ReaderBase.
Definition at line 115 of file ImageReader.cpp.
      
  | 
  overridevirtual | 
Generate Json::Value for this object.
Implements openshot::ReaderBase.
Definition at line 122 of file ImageReader.cpp.
Referenced by Json().
      
  | 
  inlineoverridevirtual | 
Return the type name of the class.
Implements openshot::ReaderBase.
Definition at line 90 of file ImageReader.h.
      
  | 
  overridevirtual | 
Open File - which is called by the constructor automatically.
Implements openshot::ReaderBase.
Definition at line 35 of file ImageReader.cpp.
Referenced by ImageReader(), and SetJsonValue().
      
  | 
  overridevirtual | 
Load JSON string into this object.
Implements openshot::ReaderBase.
Definition at line 133 of file ImageReader.cpp.
      
  | 
  overridevirtual | 
Load Json::Value into this object.
Implements openshot::ReaderBase.
Definition at line 150 of file ImageReader.cpp.
Referenced by SetJson().
 1.8.17