OpenShot Library | libopenshot  0.2.5
QtTextReader.h
Go to the documentation of this file.
1 /**
2  * @file
3  * @brief Header file for QtTextReader class
4  * @author Jonathan Thomas <jonathan@openshot.org>
5  * @author Sergei Kolesov (jediserg)
6  * @author Jeff Shillitto (jeffski)
7  *
8  * @ref License
9  */
10 
11 /* LICENSE
12  *
13  * Copyright (c) 2008-2019 OpenShot Studios, LLC
14  * <http://www.openshotstudios.com/>. This file is part of
15  * OpenShot Library (libopenshot), an open-source project dedicated to
16  * delivering high quality video editing and animation solutions to the
17  * world. For more information visit <http://www.openshot.org/>.
18  *
19  * OpenShot Library (libopenshot) is free software: you can redistribute it
20  * and/or modify it under the terms of the GNU Lesser General Public License
21  * as published by the Free Software Foundation, either version 3 of the
22  * License, or (at your option) any later version.
23  *
24  * OpenShot Library (libopenshot) is distributed in the hope that it will be
25  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27  * GNU Lesser General Public License for more details.
28  *
29  * You should have received a copy of the GNU Lesser General Public License
30  * along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
31  */
32 
33 #ifndef OPENSHOT_QT_TEXT_READER_H
34 #define OPENSHOT_QT_TEXT_READER_H
35 
36 #include "ReaderBase.h"
37 
38 #include <cmath>
39 #include <ctime>
40 #include <iostream>
41 #include <omp.h>
42 #include <stdio.h>
43 #include <memory>
44 #include "CacheMemory.h"
45 #include "Enums.h"
46 #include "Exceptions.h"
47 
48 class QImage;
49 
50 namespace openshot
51 {
52 
53  /**
54  * @brief This class uses Qt libraries, to create frames with "Text", and return
55  * openshot::Frame objects.
56  *
57  * All system fonts are supported, including many different font properties, such as size, color,
58  * alignment, padding, etc...
59  *
60  * @code
61  * // Any application using this class must instantiate either QGuiApplication or QApplication
62  * QApplication a(argc, argv);
63  *
64  * // Create a reader to generate an openshot::Frame containing text
65  * QtTextReader r(720, // width
66  * 480, // height
67  * 5, // x_offset
68  * 5, // y_offset
69  * GRAVITY_CENTER, // gravity
70  * "Check out this Text!", // text
71  * "Arial", // font
72  * 15.0, // font size
73  * "#fff000", // text_color
74  * "#000000" // background_color
75  * );
76  * r.Open(); // Open the reader
77  *
78  * // Get frame number 1 from the video (in fact, any frame # you request will return the same frame)
79  * std::shared_ptr<Frame> f = r.GetFrame(1);
80  *
81  * // Now that we have an openshot::Frame object, lets have some fun!
82  * f->Display(); // Display the frame on the screen
83  *
84  * // Close the reader
85  * r.Close();
86  * @endcode
87  */
88  class QtTextReader : public ReaderBase
89  {
90  private:
91  int width;
92  int height;
93  int x_offset;
94  int y_offset;
95  std::string text;
96  QFont font;
97  std::string text_color;
98  std::string background_color;
99  std::string text_background_color;
100  std::shared_ptr<QImage> image;
101  bool is_open;
102  openshot::GravityType gravity;
103 
104  public:
105 
106  /// Default constructor (blank text)
107  QtTextReader();
108 
109  /// @brief Constructor for QtTextReader with all parameters.
110  /// @param width The width of the requested openshot::Frame (not the size of the text)
111  /// @param height The height of the requested openshot::Frame (not the size of the text)
112  /// @param x_offset The number of pixels to offset the text on the X axis (horizontal)
113  /// @param y_offset The number of pixels to offset the text on the Y axis (vertical)
114  /// @param gravity The alignment / gravity of the text
115  /// @param text The text you want to generate / display
116  /// @param font The font of the text
117  /// @param text_color The color of the text (valid values are a color string in \#RRGGBB or \#AARRGGBB notation or a CSS color name)
118  /// @param background_color The background color of the frame image (valid values are a color string in \#RRGGBB or \#AARRGGBB notation, a CSS color name, or 'transparent')
119  QtTextReader(int width, int height, int x_offset, int y_offset, GravityType gravity, std::string text, QFont font, std::string text_color, std::string background_color);
120 
121  /// Draw a box under rendered text using the specified color.
122  /// @param color The background color behind the text (valid values are a color string in \#RRGGBB or \#AARRGGBB notation or a CSS color name)
123  void SetTextBackgroundColor(std::string color);
124 
125  /// Close Reader
126  void Close();
127 
128  /// Get the cache object used by this reader (always returns NULL for this object)
129  openshot::CacheMemory* GetCache() { return NULL; };
130 
131  /// Get an openshot::Frame object for a specific frame number of this reader. All numbers
132  /// return the same Frame, since they all share the same image data.
133  ///
134  /// @returns The requested frame (containing the image)
135  /// @param requested_frame The frame number that is requested.
136  std::shared_ptr<openshot::Frame> GetFrame(int64_t requested_frame);
137 
138  /// Determine if reader is open or closed
139  bool IsOpen() { return is_open; };
140 
141  /// Return the type name of the class
142  std::string Name() { return "QtTextReader"; };
143 
144  /// Get and Set JSON methods
145  std::string Json() const override; ///< Generate JSON string of this object
146  void SetJson(const std::string value); ///< Load JSON string into this object
147  Json::Value JsonValue() const override; ///< Generate Json::Value for this object
148  void SetJsonValue(const Json::Value root); ///< Load Json::Value into this object
149 
150  /// Open Reader - which is called by the constructor automatically
151  void Open();
152  };
153 
154 }
155 
156 #endif
Header file for ReaderBase class.
void SetTextBackgroundColor(std::string color)
void Close()
Close Reader.
void SetJson(const std::string value)
Load JSON string into this object.
This abstract class is the base class, used by all readers in libopenshot.
Definition: ReaderBase.h:97
Json::Value JsonValue() const override
Generate Json::Value for this object.
std::string Json() const override
Get and Set JSON methods.
Header file for CacheMemory class.
void SetJsonValue(const Json::Value root)
Load Json::Value into this object.
Header file for all Exception classes.
bool IsOpen()
Determine if reader is open or closed.
Definition: QtTextReader.h:139
openshot::CacheMemory * GetCache()
Get the cache object used by this reader (always returns NULL for this object)
Definition: QtTextReader.h:129
This class uses Qt libraries, to create frames with "Text", and return openshot::Frame objects...
Definition: QtTextReader.h:88
Header file for TextReader class.
This namespace is the default namespace for all code in the openshot library.
void Open()
Open Reader - which is called by the constructor automatically.
std::shared_ptr< openshot::Frame > GetFrame(int64_t requested_frame)
QtTextReader()
Default constructor (blank text)
std::string Name()
Return the type name of the class.
Definition: QtTextReader.h:142
This class is a memory-based cache manager for Frame objects.
Definition: CacheMemory.h:51
GravityType
This enumeration determines how clips are aligned to their parent container.
Definition: Enums.h:38