T O P I C R E V I E W |
sungho |
Posted - Sep 23 2015 : 20:00:43 Hi I am used C++ Builder XE and ImageEn 4.3.0. I want Get Image File by Nikon D3300. You are provide sample code is good acting.
-ImageAcquisition/CameraGetImages -ImageAcquisition/PortableDevices
Occur Error. TIEPortableDevices is not found. TIEWiaItem is error compile.
Thanks.  |
6 L A T E S T R E P L I E S (Newest First) |
sungho |
Posted - Sep 25 2015 : 08:34:51 Hi Your code is no error code. Thanks. Sungho Park.  |
xequte |
Posted - Sep 25 2015 : 05:53:05 Hi
You are not typecasting correctly for C++. Try:
ImageEnView1->IO->WIAParams->Transfer( ((TIEWiaItem*)(Node->Data)), false);
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
sungho |
Posted - Sep 24 2015 : 08:45:45 Hi. Below code is compile and occur error.(attach photo)
void __fastcall TForm1::TreeView1Change(TObject *Sender, TTreeNode *Node) { ImageEnView1->IO->WIAParams->TransferFormat = ietfJpeg; ImageEnView1->IO->WIAParams->Transfer(TIEWiaItem(Node->Data) , false) ; } //---------------------------------------------------------------------------
Thanks. Sungho Park.
 68 KB |
xequte |
Posted - Sep 24 2015 : 05:24:22 The code looks OK. What is the error you get?
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
sungho |
Posted - Sep 23 2015 : 23:27:00 Thanks fast reply. Below code occur error. Delphi code transfer is c++ Builder
Delphi code ImageEnView1.IO.WIAParams.Transfer( TIEWiaItem(Node.Data) , false);
C++ builder Code ImageEnView1->IO->WIAParams->Transfer(TIEWiaItem(Node->Data), false);
I don't know fix solution.
Thanks Sungho Park |
xequte |
Posted - Sep 23 2015 : 21:38:00 Hi
Have you added iexDCIM and iewia to your uses clause?
Nigel Xequte Software www.xequte.com nigel@xequte.com
|