From bd2e388fd0ef189d318a2f8e557432a79731559d Mon Sep 17 00:00:00 2001 From: iTob Date: Fri, 27 Feb 2026 15:52:10 +0100 Subject: [PATCH] invert liveview --- .../CamBooth.App/Features/LiveView/LiveViewPage.xaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/CamBooth/CamBooth.App/Features/LiveView/LiveViewPage.xaml.cs b/src/CamBooth/CamBooth.App/Features/LiveView/LiveViewPage.xaml.cs index d13cbe2..39c1d33 100644 --- a/src/CamBooth/CamBooth.App/Features/LiveView/LiveViewPage.xaml.cs +++ b/src/CamBooth/CamBooth.App/Features/LiveView/LiveViewPage.xaml.cs @@ -32,6 +32,11 @@ public partial class LiveViewPage : Page this._cameraService = cameraService; this.InitializeComponent(); this.SetImageAction = img => { this.bgbrush.ImageSource = img; }; + + // Mirror the LiveView image horizontally + ScaleTransform scaleTransform = new ScaleTransform(-1, 1, 0.5, 0.5); + this.bgbrush.Transform = scaleTransform; + this.LVCanvas.Background = this.bgbrush; cameraService.ConnectCamera(); cameraService._mainCamera.LiveViewUpdated += this.MainCamera_OnLiveViewUpdated;