This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Friday, July 27, 2007 5:03:12 AM(UTC)
Groups: Registered
Posts: 4
Saving the file as DICOM Format, sets the Manufacturer Tag to "Lead Technologies, Inc.".
Is there a way to change or customize this tag.
I am using LBitmap.Save call to save the image.
#2
Posted
:
Tuesday, July 31, 2007 8:04:53 AM(UTC)
Groups: Registered, Tech Support
Posts: 207
Was thanked: 3 time(s) in 3 post(s)
There is no way to change this using the LBitmap class. If you wish to adjust the value of an element in the data set you will need to use the Medical Imaging Tool Kit's classes.
You would need to use the LDicomDS class.
Use this pseudo code prior to calling SaveDS:
pDICOMELEMENT pElement = NULL;
pElement = LDicomDS::FindFirstElement(NULL, TAG_MANUFACTURE, FALSE);
if(pElement != NULL)
LDicomDS::SetStringValue(pElement, szValue, 1,DICOM_CHARACTER_SET_DEFAULT);
That should do it.
If you do not have the Medical Imaging Tool Kit, please contact our sales department for pricing and licensing information. They can be reached at:
http://www.leadtools.com.../general/leadcontact.htmFor information about the Medical Imaging Tool Kit please visit this link:
http://www.leadtools.com...l/Medical-Products-n.htmEdited by moderator Thursday, August 8, 2019 8:47:51 AM(UTC)
| Reason: Not specified
Travis Montgomery
Senior Sales Engineer
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.