You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Save the frame image to the specified path. The image format can be BMP, JPG, JPEG, PNG, PPM, XBM, XPM
286
-
voidSave(string path, float scale, string format="PNG", int quality=100);
283
+
voidSave(std::string path, float scale, std::string format="PNG", int quality=100);
287
284
288
285
/// Set frame number
289
286
voidSetFrameNumber(int64_t number);
@@ -293,8 +290,8 @@ namespace openshot
293
290
294
291
/// Thumbnail the frame image with tons of options to the specified path. The image format is determined from the extension (i.e. image.PNG, image.JPEG).
295
292
/// This method allows for masks, overlays, background color, and much more accurate resizing (including padding and centering)
296
-
voidThumbnail(string path, int new_width, int new_height, string mask_path, string overlay_path,
297
-
string background_color, bool ignore_aspect, string format="png", int quality=100, float rotate=0.0);
293
+
voidThumbnail(std::string path, int new_width, int new_height, std::string mask_path, std::string overlay_path,
294
+
std::string background_color, bool ignore_aspect, std::string format="png", int quality=100, float rotate=0.0);
0 commit comments