小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

如何在沒有 System.Drawing.Common 的情況下使用 C# 獲取圖片格式

 風(fēng)聲之家 2021-05-02

dotNET跨平臺(tái) 今天

以下文章來源于碼農(nóng)很忙 ,作者碼農(nóng)很忙

碼農(nóng)很忙

碼農(nóng)很忙

代碼改變世界。

之前寫過一篇博文,用來獲取圖片的正確格式。博文所示代碼一直工作良好,直到今天在將程序部署到阿里云函數(shù)計(jì)算時(shí),發(fā)生了以下報(bào)錯(cuò):


System.Drawing is not supported on this platform.

這表明我們不能在阿里云函數(shù)計(jì)算服務(wù)器上使用 GDI+ 相關(guān)的函數(shù),即便如此我們?nèi)匀豢梢酝ㄟ^讀取文件頭獲取圖片格式:





























































   public static class ImageHelper    {        public enum ImageFormat        {            Bmp,            Jpeg,            Gif,            Tiff,            Png,            Unknown        }
public static ImageFormat GetImageFormat(byte[] bytes) { var bmp = Encoding.ASCII.GetBytes("BM"); // BMP var gif = Encoding.ASCII.GetBytes("GIF"); // GIF var png = new byte[] {137, 80, 78, 71}; // PNG var tiff = new byte[] {73, 73, 42}; // TIFF var tiff2 = new byte[] {77, 77, 42}; // TIFF var jpeg = new byte[] {255, 216, 255, 224}; // jpeg var jpeg2 = new byte[] {255, 216, 255, 225}; // jpeg canon
if (bmp.SequenceEqual(bytes.Take(bmp.Length))) { return ImageFormat.Bmp; }
if (gif.SequenceEqual(bytes.Take(gif.Length))) { return ImageFormat.Gif; }
if (png.SequenceEqual(bytes.Take(png.Length))) { return ImageFormat.Png; }
if (tiff.SequenceEqual(bytes.Take(tiff.Length))) { return ImageFormat.Tiff; }
if (tiff2.SequenceEqual(bytes.Take(tiff2.Length))) { return ImageFormat.Tiff; }
if (jpeg.SequenceEqual(bytes.Take(jpeg.Length))) { return ImageFormat.Jpeg; }
if (jpeg2.SequenceEqual(bytes.Take(jpeg2.Length))) { return ImageFormat.Jpeg; }
return ImageFormat.Unknown; } }

新的 ImageHelper 需要一個(gè)二進(jìn)制數(shù)組作為參數(shù),但這并不代表需要將全部的文件內(nèi)容都讀取到內(nèi)存。使用以下代碼可以獲得較好的運(yùn)行效果:









    var fn = @"D:\1.jpg";    using (var fs = File.OpenRead(fn))    {        var header = new byte[10];        await fs.ReadAsync(header, 0, 10);        var ext = ImageHelper.GetImageFormat(header);        ext.Dump();    }

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請遵守用戶 評(píng)論公約

    類似文章 更多