ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Convert demo to C++ Builder XE

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

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