Blazor Hybrid (Blazor混合開發)更好的讀取本地圖片

tokengo發表於2023-01-29

在 Blazor Hybrid 應用中,Razor 元件在裝置上本機執行。 元件透過本地互操作通道呈現到嵌入式 Web View 控制元件。 元件不在瀏覽器中執行,並且不涉及 WebAssembly。 Razor 元件可快速載入和執行程式碼,元件可透過 .NET 平臺完全訪問裝置的本機功能。 Web View 中呈現的元件樣式與平臺相關,可能需要你使用自定義樣式表來說明不同平臺之間的呈現差異。

如何在Blazor Hybrid中讀取本地圖片展示?

在Blazor Hybrid經常遇到一些讀取選中的圖片並且渲染,但是檔案的目錄在Blazor中直接src填寫是無法讀取到的,這個時候就可能需要將檔案Copy到wwwroot中,或者將其轉換Base64放入到html中,但是base64轉換圖片是很長的一串字串,這樣可能會導致渲染可能卡扽,所以我們將使用js提供的功能去實現,其實在Blazor Hybrid為了相容,可以採用js提供的部分功能實現,效果更好,

建立一個Winform專案

示圖:

新增 Microsoft.AspNetCore.Components.WebView.WindowsFormsNuGet包

dotnet add package Microsoft.AspNetCore.Components.WebView.WindowsForms

修改專案檔案的屬性

開啟BlazorHybrid.csproj專案檔案,將Microsoft.NET.Sdk 修改成Microsoft.NET.Sdk.Razor

<Project Sdk="Microsoft.NET.Sdk.Razor">

建立 _Imports.razor檔案,新增以下程式碼

@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Routing

建立wwwroot資料夾

建立wwwroot/index.html檔案,新增以下程式碼

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>WinFormsBlazor</title>
    <base href="/" />
    <link href="css/app.css" rel="stylesheet" />
    <link href="WinFormsBlazor.styles.css" rel="stylesheet" />
</head>

<body>

    <div id="app">載入中...</div>

    <div id="blazor-error-ui">
        An unhandled error has occurred.
        <a href="" class="reload">Reload</a>
        <a class="dismiss">?</a>
    </div>
    <!--引用blazor.webview.js Server和web assembly,hybrid的js都不一樣-->
    <script src="_framework/blazor.webview.js"></script>

</body>

</html>

建立wwwroot/css/app.css新增以下程式碼

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

建立Shared/App.razor新增以下程式碼

<Router AppAssembly="@typeof(MainLayout).Assembly">
    <Found Context="routeData">
        <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
        <FocusOnNavigate RouteData="@routeData" Selector="h1" />
    </Found>
    <NotFound>
        <PageTitle>Not found</PageTitle>
        <LayoutView Layout="@typeof(MainLayout)">
            <p role="alert">Sorry, there's nothing at this address.</p>
        </LayoutView>
    </NotFound>
</Router>

建立Shared/MainLayout.razor新增以下程式碼

@inherits LayoutComponentBase
<div>
	@Body
</div>

選擇Form1.cs開啟設計視窗,將BlazorWebView拖到Form1中,並且將BlazorWebView的屬性中的Dock修改成Fill

將以下名稱空間新增到Form1.cs檔案的頂部

using Microsoft.AspNetCore.Components.WebView.WindowsForms;
using Microsoft.Extensions.DependencyInjection;

Form1 建構函式中的 InitializeComponent 方法呼叫後面,新增以下程式碼:

var services = new ServiceCollection();
services.AddWindowsFormsBlazorWebView();
blazorWebView1.HostPage = "wwwroot\\index.html";
blazorWebView1.Services = services.BuildServiceProvider();
blazorWebView1.RootComponents.Add<App>("#app");

效果如圖

修改wwwroot/index.html程式碼。新增js方法,將以下程式碼新增到body裡面

    <script>
        /** 將byte轉url物件 */
        function byteToUrl(blob) {
            // 適配webview和web 
            var myBlob = new Blob([blob], { type: "image/png" });
            return (window.URL || window.webkitURL || window || {}).createObjectURL(myBlob);
               }
        /**
        * 釋放url物件,因為createObjectURL建立的物件一直會存在可能會佔用過多的記憶體,請注意釋放
        */
        function revokeUrl(url) {
            (window.URL || window.webkitURL || window || {}).revokeObjectURL(url);
        }
    </script>

建立Pages/Index.razor檔案,並新增以下程式碼

@using Microsoft.JSInterop;
@inject IJSRuntime JSRuntime

@page "/"

@if (!string.IsNullOrEmpty(Img)){
    <img src="@Img" />
}

<input @bind="ImgPath" />

<button @onclick="OnLoad">載入圖片</button>

<button @onclick="Revoke">釋放圖片</button>
@code {
    public string? ImgPath { get; set; }

    private string? Img;

    private async Task OnLoad()
    {
        // 載入目錄中的圖片獲取到byte 透過byteToUrl轉換URL物件 可以直接透過url獲取到圖片 它存在與本地
        var file = await File.ReadAllBytesAsync(ImgPath);
        Img = await JSRuntime.InvokeAsync<string>("byteToUrl", file);
    }

    private async Task Revoke()
    {
        if (!string.IsNullOrEmpty(Img)){
            await JSRuntime.InvokeVoidAsync("revokeUrl", Img);
            Img = string.Empty;
        }
    }
}

<style>
    button {
        background-color: cornflowerblue;
        height: 30px;
        font-size: 15px;
        width: auto;
    }
    img{
        height:auto;
        width:auto;
    }

</style>

最終效果:

結尾

我們可以透過createObjectURL載入本地檔案或者圖片,並且渲染,這樣對比copy到wwwroot或者轉換base64的效果更好,而且更容易管理,實現也超級容易,用於跨平臺實現也算是最佳實現了,

Blazor技術交流:452761192

來自token的分享

相關文章