簡體   English   中英

位圖加載內存使文件大小增加 10 倍

[英]bitmap loaded memory increase 10x the size of the file

我正在加載圖像,並且內存增加了文件大小的 10 倍左右。

這是下面代碼的輸出

加載文件 img_6.jpg 原來是 513kb

圖像 img_6.jpg 的內存為 63704kb (124.12x)

謝謝!

這是我用來加載的代碼

      string filename = "img_6.jpg";

        Directory.SetCurrentDirectory(@"C:\Users\Admin\Desktop\isolated images");


        Helpers.membefore(filename);
        

        BitmapImage bitmap = new BitmapImage();
        //using (Stream stream = new FileStream(filepath, FileMode.Open))
        {
            bitmap.BeginInit();
            //bitmap.StreamSource = stream;
            bitmap.CreateOptions = BitmapCreateOptions.IgnoreImageCache;

            bitmap.CacheOption = BitmapCacheOption.OnLoad;
            bitmap.UriSource = new Uri(filename, UriKind.Relative);
            bitmap.EndInit();
          
        }
        

        ImageBrush ib = new ImageBrush() { ImageSource = bitmap };

        Helpers.memafter(ib);

這些是內存日志助手

      public static void memafter(object result)
    {
        //debugging
        if (result.GetType() == typeof(ImageBrush) && (result as ImageBrush).ImageSource != null)
        {

            var after = Process.GetCurrentProcess().VirtualMemorySize64;
            string factor = ((double)(after - before) / (double)len).ToString("N") ;
            string source = (result as ImageBrush).ImageSource.ToString();
            Console.WriteLine(String.Format("Memory for image {0} is {1}kb ({2}x)",
               source,
                (after - before) / 1024,
                factor.ToString()));
            string s = result.ToString();
        }
    }

    public static void membefore(string xaml)
    {

        FileInfo fi = new FileInfo(xaml);
        len = fi.Length;
        Console.WriteLine(string.Format("Loading file {0} with originally {1}kb", xaml, fi.Length / 1024));

        if (xaml.Contains("ico") || xaml.Contains("jpg") || xaml.Contains("bmp") || xaml.Contains("png"))
        {
            before = Process.GetCurrentProcess().VirtualMemorySize64;
        }
    }

    private static long len = 0;
    static long before = 0;

好吧,背后有不同文件格式的原因。 Irfanview 在按下 I 打開圖像信息顯示文件和加載的內存大小方面有很大幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM