Vali Maties
Vali Maties

Reputation: 154

Image rendering in MAUI project

Is there any technique to render the images more clearly in MAUI, like RenderOption in WPF.

My image must be like this:

enter image description here

and it is rendered like this:

enter image description here

Edit: This project will run only on Windows Desktop and MacCatalyst. This behavior is happening on Windows device. The OS is Windows 11 x64

Image xaml:

<Border
    Grid.Row="1"
    Margin="3"
    HeightRequest="140"
    StrokeShape="RoundRectangle 1,1,1,1"
    WidthRequest="140">
    <Border.Stroke>Black</Border.Stroke>
    <Border.StrokeThickness>0.3</Border.StrokeThickness>
    <Image
        Margin="1"
        Aspect="AspectFill"
        Background="{StaticResource Gray100}"
        HeightRequest="130"
        HorizontalOptions="Center"
        Source="{Binding MyImage}"
        VerticalOptions="Center"
        WidthRequest="130" />
</Border>

In action:

InAction

Upvotes: 1

Views: 801

Answers (1)

Jessie Zhang -MSFT
Jessie Zhang -MSFT

Reputation: 13853

As a summary, I will post an answer so that it will help others who have similar problems. Thanks for your support and feedback @ValiMatie.

The posted issue is here: https://github.com/dotnet/maui/issues/10916 .

And it has been moved to Backlog milestone. This means that it is not going to be worked on for the coming release.

Upvotes: 1

Related Questions