|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
WIA.ImageFile to System.Drawing.ImageAcquisition). The problem is that I cannot convert a WIA.ImageFile to a System.Drawing.Image to put a timestamp on the image without first saving the file using the wia.imagefile.savefile then loading it again using System.Drawing.Image.FromFile. This seems pretty ineffecient. I have tried coverting it using ctype, but I get an invalid cast exception. Is anyone aware of how to accomplish this without saving and reloading the file? I appreciate your time... Thanks, Jeremy Dim mydevice As WIA.Device Dim manager As New WIA.DeviceManagerClass Dim mydialog As New WIA.CommonDialogClass Dim strcmdTakePicture As String = WIA.CommandID.wiaCommandTakePicture Dim strImageformat As String = WIA.FormatID.wiaFormatJPEG Dim myItem As WIA.Item Dim myImage As WIA.ImageFile Dim strFilePath As String = Application.StartupPath & "\Images\Dummy.jpg" For Each info As WIA.DeviceInfo In manager.DeviceInfos 'Connect w/o dialog If info.DeviceID = "{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\0000" Then mydevice = info.Connect End If Next If IsNothing(mydevice) Then mydevice = mydialog.ShowSelectDevice(WIA.WiaDeviceType.VideoDeviceType, False, True) End If myItem = mydevice.ExecuteCommand(strcmdTakePicture) myImage = CType(myItem.Transfer(strImageformat), WIA.ImageFile) 'Need to covert to image here instead of SaveFile myImage.SaveFile(strFilePath) Hi,
Maybe this will help http://msdn.microsoft.com/coding4fun/someassemblyrequired/lookatme/default.aspx Ken -------------- Show quoteHide quote "Jeremy" <slayer3***@hotmail.com> wrote in message news:1136421784.435200.21180@g44g2000cwa.googlegroups.com... >I am creating an imaging service using WIA (Windows Imaging > Acquisition). > > The problem is that I cannot convert a WIA.ImageFile to a > System.Drawing.Image to put a timestamp on the image without first > saving the file using the wia.imagefile.savefile then loading it again > using System.Drawing.Image.FromFile. This seems pretty ineffecient. I > have tried coverting it using ctype, but I get an invalid cast > exception. Is anyone aware of how to accomplish this without saving and > reloading the file? I appreciate your time... > > Thanks, > Jeremy > > Dim mydevice As WIA.Device > Dim manager As New WIA.DeviceManagerClass > Dim mydialog As New WIA.CommonDialogClass > Dim strcmdTakePicture As String = > WIA.CommandID.wiaCommandTakePicture > Dim strImageformat As String = WIA.FormatID.wiaFormatJPEG > Dim myItem As WIA.Item > Dim myImage As WIA.ImageFile > Dim strFilePath As String = Application.StartupPath & > "\Images\Dummy.jpg" > > For Each info As WIA.DeviceInfo In manager.DeviceInfos > 'Connect w/o dialog > If info.DeviceID = > "{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\0000" Then > mydevice = info.Connect > End If > Next > > If IsNothing(mydevice) Then > mydevice = > mydialog.ShowSelectDevice(WIA.WiaDeviceType.VideoDeviceType, False, > True) > End If > > myItem = mydevice.ExecuteCommand(strcmdTakePicture) > > myImage = CType(myItem.Transfer(strImageformat), WIA.ImageFile) > > 'Need to covert to image here instead of SaveFile > myImage.SaveFile(strFilePath) > Thanks for your reply Ken. Actually this is one resource I used to
learn WIA. In the example however, he simply saves the file. I want to convert it to a System.Drawing.Image first so I can alter the image (add a time stamp). You can not programatically alter a wia.imagefile. I was hoping someone could assist me in coverting a wia.imagefile to a drawing.image without saving and reloading the file. Dim bmap as Image = ctype(MyWiaImage,Image) causes an invalid cast exception.
The connection is dead
Unmanaged C dll call OpenFileDialog Looking for an event that fires only once on startup XML question Control Arrays How to loop thru each controls ? How to get a List of Checked items from a Treeview Using VB Keywords In An Enum Statement Developing Application like Photoshop |
|||||||||||||||||||||||