From 4cb6844d554e13999dc616de37941273de27d5a1 Mon Sep 17 00:00:00 2001 From: Paillat Date: Mon, 22 Apr 2024 10:35:40 +0200 Subject: [PATCH] :bug: fix(GoogleStockImageEngine): Center image in frame --- src/engines/StockImageEngine/GoogleStockImageEngine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engines/StockImageEngine/GoogleStockImageEngine.py b/src/engines/StockImageEngine/GoogleStockImageEngine.py index ce7bbab..36ea748 100644 --- a/src/engines/StockImageEngine/GoogleStockImageEngine.py +++ b/src/engines/StockImageEngine/GoogleStockImageEngine.py @@ -59,7 +59,7 @@ class GoogleStockImageEngine(BaseStockImageEngine): img.with_duration(end - start) .with_start(start) .with_effects([vfx.Resize(width=max_width)]) - .with_position(("center", "top")) + .with_position(("center", "center")) ) return img