如何使用ADF或LogicaApp将存储在Azure Blob存储中的图像转换为64
我需要使用ADF或azure的logicapp将image .png/.jpg文件转换为base64
..我需要将image .png/.jpg文件转换为base64
I need to convert an image .png/.jpg files to base64 using adf or logicapp
New to azure..I need to convert an image .png/.jpg files to base64 and need to save the values in azure SQL database
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我使用Azure Logic Apps :
您需要在上述工作流的第一个2步中给您的Azure存储帐户名称,访问密钥和容器名称。
在撰写步骤中,以您需要转换为编码格式的参数:
下一步,我接下了发送邮件连接器以发送 编码的基础64字符串< /strong> 上传的文件,也可以选择其他连接器,例如创建新斑点并保存到其中。
在身体中,将表达式显示为
base64(outputs('compose'))
用于转换Blob文件内容,然后单击保存。结果:
请参阅此实用的解决方法使用Azure Logic应用连接器将响应数据保存在SQL Server数据库表行中。
Here is the workaround I did to convert the Blob Files to base64 encoded string using Azure Logic Apps:
You need to give your Azure Storage Account Name, Access Key and Container Name in the 1st 2 steps of the above Workflow.
In Compose Step, take the parameter which you need to convert to encoded format:
Next step, I taken Send Mail Connector for sending the encoded base 64 string of uploaded file or you can select other connectors like create a new blob and save into it.
In the body, gave the expression as
base64(outputs('Compose'))
for conversion of blob file content and clicked on save.Result:
Refer to this practical workaround regarding how to save the response data in SQL Server database table row using Azure Logic App Connectors.