Search found 3 matches

by Frogger
2016-10-13T05:54:45-07:00
Forum: Users
Topic: Using properties to mass rename images
Replies: 4
Views: 3408

Re: Using properties to mass rename images

Aaand got it.

Code: Select all

convert *.dcm -set filename:f "%[dcm:SeriesNumber]"_"%[dcm:AcquisitionNumber]" "%[filename:f].jpg"
by Frogger
2016-10-13T05:43:11-07:00
Forum: Users
Topic: Using properties to mass rename images
Replies: 4
Views: 3408

Re: Using properties to mass rename images

Almost got it.

Code: Select all

convert *.dcm -set filename:f "%[dcm:SeriesNumber]%[dcm:AcquisitionNumber]" "%[filename:f].jpg"
How do I set an underscore in-between dcm:SeriesNumber and dcm:AcquistionNumber?
by Frogger
2016-10-13T03:36:42-07:00
Forum: Users
Topic: Using properties to mass rename images
Replies: 4
Views: 3408

Using properties to mass rename images

Hi, I have got a ton of dicom files that I want to mass rename using their properties tags. My question is, what is the syntax for taking a property tag(such as dcm:SeriesNumber) for every image and using it to rename the images in the directory? I'm guessing it involves breaking it down to the ...