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;