how to convert Image to Data URI for Html with C#?

前端 未结 3 919
后悔当初
后悔当初 2020-12-05 02:05

I need convert image to Data URL (embedding Image) in the Win-application for HTML and I need Data URL (embedding Image) to image.

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-05 02:38

            public static string GetDataURL(string imgFile)
            {
                return "";
            }
    

提交回复
热议问题