WIA在.NET C#中保存图像

时间:2012-12-17 13:01:37

标签: c# .net wia

我正在使用WIA以编程方式拍摄照片,然后将此图像复制到桌面上的特定文件夹中。除了保存部分外,一切进展顺利。

void deviceManager_OnEvent(string EventID, string DeviceID, string ItemID)
    {

        for (int i = 1; i <= d.Items.Count; i++)
        {
            wiaImageFile = (WIA.ImageFile)d.Items[i].Transfer(FormatID.wiaFormatJPEG);
            wiaImageFile.SaveFile(Properties.Settings.Default.FolderNameRaw + "\\1.jpg");
            if (wiaImageFile != null)
                Marshal.ReleaseComObject(wiaImageFile);
        }
    }

在这段代码中,我的d.Items.Count不断增加(例如29,这与实际计数完全不同),即使我的相机的SD卡中只有2张照片。有没有办法正确传输甚至将文件切换到我的电脑? 这是我收到的例外。 enter image description here

1 个答案:

答案 0 :(得分:1)

答案只是选择索引中的最后一个条目。对于我的情况,我只需要抓住最新的照片,这样就可以了。

if (EventID == WIA.EventID.wiaEventDeviceConnected)
        {
            Console.WriteLine("Connected: D5100");
        }
        if (EventID == WIA.EventID.wiaEventItemCreated)
        {
            if (d != null)
            {
                foreach (Property p in d.Properties)
                {
                    if (p.Name.Equals("Pictures Taken"))
                        Console.WriteLine("Taken");
                }

                wiaImageFile = (WIA.ImageFile)(d.Items[d.Items.Count].Transfer(FormatID.wiaFormatJPEG));
                wiaImageFile.SaveFile(Properties.Settings.Default.FolderNameRaw + "\\" + imageCount + ".jpg");
                imageCount++;
            }
        }

这非常有效。除非文件因任何原因而存在,否则你需要尝试捕获并解决问题。