无需使用Image :: Magick;,有没有办法将MSSQL Image字符串作为JPEG / PNG文件输出到本地文件系统。
C#中的以下内容非常有效,很难找到Perl中的等效内容。
string base64string = "/9j/4AAQSkZJRgABAQAAAQABAAD/4QB..."; # This string shortened otherwise it would not fit
byte[] blob = Convert.FromBase64String(base64string);
File.WriteAllBytes(@"C:\image.jpg", blob);
感谢。