如何为Xamarin Forms项目快速创建不同大小的图像?

问题描述 投票:0回答:1

我刚刚开始学习Xamarin Forms。我注意到在一些开源项目中有名为logo.png[email protected][email protected]的图像。通常这些图像是如何创建的?

image xamarin xamarin.forms size
1个回答
0
投票

[Checkout Resizetizer NT,它将自动为您调整图标大小。

  1. 安装the NuGet
  2. 将图像(PNG或SVG)作为SharedImage类型添加到共享项目中>
  3. 在共享项目的csproj文件中为每个图像设置基本大小(请参见下文)
  4.     <ItemGroup>
            <SharedImage Include="xamagon.svg" BaseSize="60,60" />
        </ItemGroup>
    

结帐the link了解更多详细步骤。

© www.soinside.com 2019 - 2024. All rights reserved.