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
 Unable to display DICOM image

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
Jordi Posted - Sep 18 2014 : 03:03:26

Hi I have a DICOM image which is properly previewed in the Open Dialog (TOpenImageEnDialog) but it is never painted in the TImageEnView component.

Any help would be appreciated.

PS: I'm sending 2 sample image to nigel email address.
2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Sep 18 2014 : 13:34:40
Hi

Yes, that's right. Also, as your images are huge you might want to enable ShrinkToFit.



Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
Jordi Posted - Sep 18 2014 : 04:54:12
I managed to solve it.

I was just using the demo Display.

The issue was that file name extension was not recognized by ImageEn.

Changing the load process from:
LoadFromFile(ExecuteOpenDialog('', '', false, 1, ''))
to
LoadFromFileDICOM(ExecuteOpenDialog('', '', false, 1, ''));
solved my issue...

Even using
LoadFromFileAuto also solved it allowing to display all image types, not only DICOM.