From bbb4e5908bb4581d7aa381b522173bcf02a94bc6 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期五, 05 二月 2021 09:56:19 +0800
Subject: [PATCH] 2021-02-05 1.去掉测试代码
---
HDL_ON/Common/ImageUtlis.cs | 40 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 40 insertions(+), 0 deletions(-)
diff --git a/HDL_ON/Common/ImageUtlis.cs b/HDL_ON/Common/ImageUtlis.cs
index f2b6cca..6eb1c54 100644
--- a/HDL_ON/Common/ImageUtlis.cs
+++ b/HDL_ON/Common/ImageUtlis.cs
@@ -352,6 +352,46 @@
}
}
+
+
+ /// <summary>
+ /// 2021-01-28
+ /// 鍔犺浇绗笁鏂瑰搧鐗宨con
+ /// </summary>
+ /// <param name="imageKey">鍥剧墖璺緞銆佷簯绔笅杞藉浘鐗囩殑鏍囪瘑key</param>
+ /// <param name="imageView">闇�瑕佹樉绀哄浘鐗囩殑ImageView</param>
+ /// <param name="ignoreCache">鏄惁闇�瑕佸拷鐣ョ紦瀛�</param>
+ public void Load3tyBrandIconImages(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 鍔犺浇浜戠涓嬭浇鍥剧墖鎴愬姛");
+ }
+ });
+ }
+ });
+ }
+ catch (Exception ex)
+ {
+ Utlis.WriteLine("imageKey 鍔犺浇鍥剧墖寮傚父 catch");
+ }
+ finally
+ {
+ }
+ }
+
+
// /// <summary>
///// 鑾峰彇鎷兼帴鐢ㄦ埛澶村儚鐨処mageKey瑙勫垯
///// </summary>
--
Gitblit v1.8.0