微软 Power Apps MDA 模型驱动应用解决Image字段查询出来缩略图问题变原图方法(c#+Plugin方式)

微软 Power Apps MDA 模型驱动应用解决Image字段查询出来缩略图问题变原图方法(c#+Plugin方式)

在某些特定的场景中,需要将Image字段中的图片取出来,一般来说直接查询这个字段可以直接取,取出来的就是一个Base64格式的图片,但是我发现非常模糊,经了解是一个缩略图,那么如何将原图取出来的,其实微软官方文档也给出了解决方案。

链接: 微软官方文档链接入口

原图和缩略图的差别还是很大

直接贴代码

csharp 复制代码
using Microsoft.Crm.Sdk.Messages;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Client;
using Microsoft.Xrm.Sdk.Query;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;

namespace testAction
{
    public class testplugin : IPlugin
    {
        public void Execute(IServiceProvider serviceProvider)
        {
            var tracer = (ITracingService)serviceProvider.GetService(typeof(ITracingService));
            var context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));
            var serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
            var service = serviceFactory.CreateOrganizationService(context.UserId);

            if (context.MessageName.Equals("update", StringComparison.OrdinalIgnoreCase))
            {
                try
                {
                    if (context.InputParameters.Contains("Target") && context.InputParameters["Target"] is Entity target)
                    {
                        var entity = service.Retrieve("new_modeldata", target.Id,
                            new ColumnSet("new_modeldataid", "new_name", "new_fabricimagebase64", "new_onedriveimage", "new_fabricimage", "new_image_url"));

                        // 直接将文件转换成Base64字符串,确保下载的是原图
                        string base64String = ConvertFileToBase64(service, entity, "new_fabricimage");

                        // 如果需要将base64保存回CRM记录
                        entity["new_fabricimagebase64"] = base64String;
                        service.Update(entity);
                    }
                }
                catch (Exception ex)
                {
                    throw new InvalidPluginExecutionException($"Error: {ex.Message}", ex);
                }
            }
        }

        // 将文件下载并转换成Base64字符串
        public string ConvertFileToBase64(IOrganizationService service, Entity entity, string fileAttributeName)
        {
            // 使用 InitializeFileBlocksDownloadRequest 确保获取的是原图
            InitializeFileDownload(service, entity, fileAttributeName, out string downloadToken, out long fileSize, out string fileName);
            return DownloadFileAsBase64(service, entity, downloadToken, fileSize);
        }

        private void InitializeFileDownload(IOrganizationService service, Entity entity, string fileAttributeName, out string token, out long fileSize, out string fileName)
        {
            var request = new InitializeFileBlocksDownloadRequest
            {
                Target = entity.ToEntityReference(),
                FileAttributeName = fileAttributeName
            };

            var response = service.Execute(request);
            token = (string)response.Results["FileContinuationToken"];
            fileSize = (long)response.Results["FileSizeInBytes"];
            fileName = (string)response.Results["FileName"];
        }

        // 将下载的文件块拼接并转换成Base64字符串
        private string DownloadFileAsBase64(IOrganizationService service, Entity entity, string downloadToken, long fileSize)
        {
            long offset = 0;
            const long chunkSize = 4 * 1024 * 1024; // 4MB
            int chunksCount = (int)(fileSize / chunkSize) + 1;
            byte[] fileBytes = new byte[fileSize];

            for (int chunkNumber = 0; chunkNumber < chunksCount; chunkNumber++)
            {
                var downloadRequest = new DownloadBlockRequest
                {
                    FileContinuationToken = downloadToken,
                    Offset = offset,
                    BlockLength = Math.Min(chunkSize, fileSize - offset)
                };

                var response = service.Execute(downloadRequest);
                byte[] chunkData = (byte[])response.Results["Data"];
                Buffer.BlockCopy(chunkData, 0, fileBytes, (int)offset, chunkData.Length);

                offset += chunkSize;
            }

            // 将字节数组转换为Base64字符串
            return Convert.ToBase64String(fileBytes);
        }
    }
}

ConvertFileToBase64 方法:

该方法负责下载文件并将其转换成 Base64 字符串。

它调用 InitializeFileDownload 来初始化文件下载操作,获取文件的下载令牌、文件大小和文件名。

InitializeFileDownload 方法:

这是初始化文件下载的关键步骤,使用 InitializeFileBlocksDownloadRequest 请求来确保获取完整文件。

该方法返回文件的下载令牌 (FileContinuationToken)、文件大小 (FileSizeInBytes)、文件名 (FileName),这些信息随后用于实际的下载操作。

DownloadFileAsBase64 方法:

该方法负责逐块(每块 4MB)下载文件的内容,并将其拼接成一个完整的字节数组。

下载完成后,将整个字节数组转换为 Base64 字符串并返回。

其中 DownloadBlockRequest 请求用于每次下载一块数据,逐步填充 fileBytes 字节数组。

好喽,这样就可以在代码中拿到原图了!

感谢大佬指正 小Monkey
如果你觉得有用的话,就留个赞吧!蟹蟹

相关推荐
IT技术分享社区23 分钟前
C#实战:使用腾讯云识别服务轻松提取火车票信息
开发语言·c#·云计算·腾讯云·共识算法
极客代码25 分钟前
【Python TensorFlow】入门到精通
开发语言·人工智能·python·深度学习·tensorflow
疯一样的码农32 分钟前
Python 正则表达式(RegEx)
开发语言·python·正则表达式
&岁月不待人&1 小时前
Kotlin by lazy和lateinit的使用及区别
android·开发语言·kotlin
StayInLove1 小时前
G1垃圾回收器日志详解
java·开发语言
无尽的大道1 小时前
Java字符串深度解析:String的实现、常量池与性能优化
java·开发语言·性能优化
爱吃生蚝的于勒1 小时前
深入学习指针(5)!!!!!!!!!!!!!!!
c语言·开发语言·数据结构·学习·计算机网络·算法
binishuaio1 小时前
Java 第11天 (git版本控制器基础用法)
java·开发语言·git
小奥超人1 小时前
PPT文件设置了修改权限,如何取消权?
windows·经验分享·microsoft·ppt·办公技巧
zz.YE1 小时前
【Java SE】StringBuffer
java·开发语言