From 82eba47c84106e286d37ecdb9fc564cc9b80e39f Mon Sep 17 00:00:00 2001
From: wei <kaede@kaededeMacBook-Air.local>
Date: 星期三, 17 十一月 2021 17:19:24 +0800
Subject: [PATCH] cct 色温调节
---
HDL_ON/Common/ImageUtlis.cs | 39 ++++++++++++++++++++++++++-------------
1 files changed, 26 insertions(+), 13 deletions(-)
diff --git a/HDL_ON/Common/ImageUtlis.cs b/HDL_ON/Common/ImageUtlis.cs
index 6eb1c54..918483d 100644
--- a/HDL_ON/Common/ImageUtlis.cs
+++ b/HDL_ON/Common/ImageUtlis.cs
@@ -2,6 +2,7 @@
using Shared;
using HDL_ON.DAL.Server;
using System.IO;
+using HDL_ON.Common;
namespace HDL_ON
{
@@ -361,25 +362,37 @@
/// <param name="imageKey">鍥剧墖璺緞銆佷簯绔笅杞藉浘鐗囩殑鏍囪瘑key</param>
/// <param name="imageView">闇�瑕佹樉绀哄浘鐗囩殑ImageView</param>
/// <param name="ignoreCache">鏄惁闇�瑕佸拷鐣ョ紦瀛�</param>
- public void Load3tyBrandIconImages(string imageKey, ImageView imageView)
+ public void Load3tyBrandIconImages(string brandName, string imageKey, ImageView imageView)
{
try
{
System.Threading.Tasks.Task.Run(() =>
{
- byte[] imageBytes = GetImageDownloadUrl(imageKey);
- if (imageBytes != null)
- {
- WriteFileByBytes(imageKey, imageBytes);
- //2.3 涓嬭浇鎴愬姛锛屾樉绀哄苟缂撳瓨鏈湴
- Application.RunOnMainThread(() => {
- if (imageView != null)
- {
- imageView.ImageBytes = imageBytes;
- //Utlis.WriteLine("imageKey 鍔犺浇浜戠涓嬭浇鍥剧墖鎴愬姛");
- }
+ //byte[] imageBytes = GetImageDownloadUrl(imageKey);
+ //if (imageBytes != null)
+ //{
+ // WriteFileByBytes(imageKey, imageBytes);
+ // //2.3 涓嬭浇鎴愬姛锛屾樉绀哄苟缂撳瓨鏈湴
+ // Application.RunOnMainThread(() => {
+ // if (imageView != null)
+ // {
+ // imageView.ImageBytes = imageBytes;
+ // //Utlis.WriteLine("imageKey 鍔犺浇浜戠涓嬭浇鍥剧墖鎴愬姛");
+ // }
+ // });
+ //}
+
+ //var ddd = new Common.DownLoadImageAsync(imageKey,"1","1");
+ //ddd.StartDownloadImageAsync();
+
+ Action action = () => {
+ Application.RunOnMainThread(() =>
+ {
+ imageView.ImagePath = $"{brandName}.png";
});
- }
+ };
+ FileUtlis.Files.DownLoadImage($"{brandName}.png", imageKey, action);
+
});
}
catch (Exception ex)
--
Gitblit v1.8.0