OpenShot Library | libopenshot  0.3.2
Crop.h
Go to the documentation of this file.
1 
9 // Copyright (c) 2008-2019 OpenShot Studios, LLC
10 //
11 // SPDX-License-Identifier: LGPL-3.0-or-later
12 
13 #ifndef OPENSHOT_CROP_EFFECT_H
14 #define OPENSHOT_CROP_EFFECT_H
15 
16 #include "../EffectBase.h"
17 
18 #include "../Color.h"
19 #include "../Frame.h"
20 #include "../Json.h"
21 #include "../KeyFrame.h"
22 
23 #include <memory>
24 #include <string>
25 
26 
27 namespace openshot
28 {
29 
37  class Crop : public EffectBase
38  {
39  private:
41  void init_effect_details();
42 
43 
44  public:
51  bool resize;
52 
54  Crop();
55 
65  Keyframe x=0.0, Keyframe y=0.0);
66 
73  std::shared_ptr<openshot::Frame>
74  GetFrame(int64_t frame_number) override {
75  return GetFrame(std::make_shared<openshot::Frame>(), frame_number);
76  }
77 
87  std::shared_ptr<openshot::Frame>
88  GetFrame(std::shared_ptr<openshot::Frame> frame, int64_t frame_number) override;
89 
90  // Get and Set JSON methods
91  std::string Json() const override;
92  void SetJson(const std::string value) override;
93  Json::Value JsonValue() const override;
94  void SetJsonValue(const Json::Value root) override;
95 
98  std::string PropertiesJSON(int64_t requested_frame) const override;
99  };
100 
101 }
102 
103 #endif
openshot::Crop::PropertiesJSON
std::string PropertiesJSON(int64_t requested_frame) const override
Definition: Crop.cpp:184
openshot::EffectBase
This abstract class is the base class, used by all effects in libopenshot.
Definition: EffectBase.h:53
openshot::Crop::right
Keyframe right
Size of right bar.
Definition: Crop.h:47
openshot
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::Crop::bottom
Keyframe bottom
Size of bottom bar.
Definition: Crop.h:48
openshot::Crop::left
Keyframe left
Size of left bar.
Definition: Crop.h:45
openshot::Crop::y
Keyframe y
Y-offset.
Definition: Crop.h:50
openshot::Crop::x
Keyframe x
X-offset.
Definition: Crop.h:49
openshot::Crop::SetJsonValue
void SetJsonValue(const Json::Value root) override
Load Json::Value into this object.
Definition: Crop.cpp:161
openshot::Keyframe
A Keyframe is a collection of Point instances, which is used to vary a number or property over time.
Definition: KeyFrame.h:53
openshot::Crop::GetFrame
std::shared_ptr< openshot::Frame > GetFrame(int64_t frame_number) override
This method is required for all derived classes of ClipBase, and returns a new openshot::Frame object...
Definition: Crop.h:74
openshot::Crop::Json
std::string Json() const override
Generate JSON string of this object.
Definition: Crop.cpp:119
openshot::Crop
This class crops a frame image (from any side), and can be animated with openshot::Keyframe curves ov...
Definition: Crop.h:37
openshot::Crop::resize
bool resize
Auto-resize image after crop operation.
Definition: Crop.h:51
openshot::Crop::Crop
Crop()
Blank constructor, useful when using Json to load the effect properties.
Definition: Crop.cpp:26
openshot::Crop::JsonValue
Json::Value JsonValue() const override
Generate Json::Value for this object.
Definition: Crop.cpp:126
openshot::Crop::SetJson
void SetJson(const std::string value) override
Load JSON string into this object.
Definition: Crop.cpp:144
openshot::Crop::top
Keyframe top
Size of top bar.
Definition: Crop.h:46