从C#资源获取位图数组

时间:2012-06-30 14:43:44

标签: c# bitmap

我制作了一个启动画面程序,它可以加载文件夹中的图片并间隔更改图像,因此效果是 - 心跳加速。但我想加载这些图像不是从文件夹,而是装配中的资源。我不知道如何加载这个位图数组,你可以帮我吗?这是我的代码:

private static string imagefile;
    private static int selected = 0;
    private static int begin;
    private static int end = 0;
   // private static string path = SplashDemo.Properties.Resources.ResourceManager.GetStream();
    private static string path = "C:/Users/Desktop/Desktop/New folder";
    private static string[] folderFile = null;

    [STAThread ( )]
    private static void Main ( )
    {

        Splasher.Splash = new SplashScreen ( );
        Splasher.ShowSplash ( );
     // TIMER
        System.Timers.Timer timer = new System.Timers.Timer();
        timer.Interval = 50;
        timer.Enabled = true;
        timer.AutoReset = true;
        timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Tick);
    // END TIMER


    // GET ASSEMBLY FILS
        System.Reflection.Assembly thisExe;
        thisExe = System.Reflection.Assembly.GetExecutingAssembly();
        string[] resources = thisExe.GetManifestResourceNames();
      // Bitmap[] image = new Bitmap[string];
      // Bitmap[] imagew = new Bitmap[10];
      // Bitmap image = new Bitmap(file);
     //  string[] embeddedResources = Assembly.GetExecutingAssembly().GetManifestResourceNames();
      // END GET ASSEMBLY FILS


        // GET DIRECTORY FILES
        string[] part1 = null, part2 = null, part3 = null;
        part1 = Directory.GetFiles(path, "*.png");
        part2 = Directory.GetFiles(path, "*.jpeg");
        part3 = Directory.GetFiles(path, "*.bmp");
        folderFile = new string[part1.Length + part2.Length + part3.Length];
        Array.Copy(part1, 0, folderFile, 0, part1.Length);
        Array.Copy(part2, 0, folderFile, part1.Length, part2.Length);
        Array.Copy(part3, 0, folderFile, part1.Length + part2.Length, part3.Length);
        bool beating = true;
        selected = 0;
        begin = 0;
        end = folderFile.Length;
        while (beating == true)
        {
            ImageListener.Instance.ReceiveImage(string.Format(@"{0}", imagefile));
        }


    }

    public static void timer_Tick(object sender, EventArgs e)
    {
        ChangeImage();
    }

    public static void ChangeImage()
    {
        if (selected == folderFile.Length - 1)
        {
            selected = 0;
            imagefile = (folderFile[selected]);
        }
        else
        {
            selected = selected + 1;
            imagefile = (folderFile[selected]);
        }
    }

1 个答案:

答案 0 :(得分:0)

  1. 将图像添加到项目中
  2. 右键单击图像 - 单击“属性”
  3. 在属性窗口中,将“构建操作”设置为“嵌入资源”
  4. 例如,如果您添加的图片在程序集MyPictureName.jpg中名为Resources的文件夹中名为MyAssemblyName,则可以执行以下操作:

    var stream = Assembly.GetExecutingAssembly()
        .GetManifestResourceStream("MyAssemblyName.Resources.MypictureName.jpg");
    
    pictureBox1.Image = new Bitmap(stream);