Replies: 1 comment 2 replies
-
Every frame is rendered as a bitmap. Support for ScaleTransform is the default WPF implementation for scaling bitmaps. https://github.com/cefsharp/CefSharp/blob/cefsharp/89/CefSharp.Wpf/Themes/Generic.xaml#L12 Personally I don't recommend using a ScaleTransform as post processing the bitmap is slow, zooming the browser is preferable (does depend on your use case). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using CefSharp WPF for an application. The application has an ability to scale the whole page, including CefSharp components and other non CefSharp components. We implement it with ScaleTransform. When scale the page, other non CefSharp components works well, the text and lines are fine. While for CefSharp components, the text and lines are blurry.
I'd like to know whether CefSharp support WPF ScaleTransform, is there a solution for it? Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions