Scripting Resources for DigitalMicrograph™

banner

Dave Mitchell's DigitalMicrograph™ Scripting Website

Home | Scripts | Examples | Functions | Recent Updates | Tutorials | Resources | Publications | Consulting | Projects | Contact & Bio |PyJEM| Search

 

Save All As Gatan
Function
Saves all currently open images in Gatan (.dm3) format, with the option to append an incrementing file number at the end of the filename.
Version
version:20130314, v1.0
Author
D. R. G. Mitchell
Acknowledgements
-
Comments
Simply run the script and point it at the location where you want to save the files.
System Requirements
Should be compatible with all recent versions of DigitalMicrograph.
Known Issues
-
Supported
Yes
Included Files
Main script file.
Source Code

// Script to save all the currently open images in .dm3 format into a folder of choice.


// Images are saved with their current names. A frame number can be added if required

 

// version:20130314, v1.0, adminnospam@dmscripting.com (remove the nospam to make this work)

// D. R. G. Mitchell, www.dmscripting.com, March 2013

 

// function to close all open images

 

void CloseAllOpenimages()

{

number nodocs=countdocumentwindowsoftype(5)

if(nodocs==0) return

 

number i

for(i = 0; i <nodocs; i++)

{

ImageDocument imgDoc = GetImageDocument( 0 )

imagedocumentClose(imgdoc,0)

}

return

}

// function which takes the passed in number (value) and pads it with zeroes out to the length specified in PadOutTo

// returns the padded number as a string. eg value=27, PadOutTo=5 returns the string "00027"

 

string PadWithZeroes(number value, number PadOutTo)

{

string startstring=""+value

number stringlen=len(startstring)

while(stringlen<PadOutTo)

{

startstring="0"+startstring

stringlen=len(startstring)

}

return startstring

}

 

 

// function to show all hidden images

 

void showallhiddenimages()

{

// variables

 

number nodocs,shown, hidden, imgdocid, counter

number i

imagedocument imgdoc

 

// count the number of image documents - this includes both shown and hidden ones

// and delete any temporary tag information which may have been left over from last time.

shown=Countdocumentwindowsoftype(5) // images currently shown

nodocs=countimagedocuments() // all image documents, including hidden ones

hidden=nodocs-shown // the number of hidden images

deletepersistentnote("Show Hidden Temp")

 

// Image documents are indexed (0,1,2 . . . ) in the following manner

// Front-most shown image (0) then the image shown behind that (1) etc.

// Hidden images appear at the end of the stacking sequence. The last image in the sequence is the last

// image to be hidden. In the Window menu, hidden images have a 'h' next to them.

// Hidden images have indexes which run top to bottom in this menu. If there are only 3 image documents

// open and all three are hidden, then the top one in the 'Window' menu will have an index of 0

// next down 1, and the last will have an index of 2. If there are four image documents open, one is shown

// and three are hidden, the hidden image documents are indexed 1,2 and 3 ie

// Shown images

// Front most - index = 0

// behind front - index = 1

// rear most - index = n = number of shown imagedocuments-1

// Hidden images

// First to be hidden - index n+1

// Last to be hidden - index number of imagedocuments-1

 

// Get the IDs of the hidden image documents

for(i=shown; i<nodocs; i++)

{

imgdoc=getimagedocument(i)

imgdocid=imgdoc.imagedocumentgetid()

setpersistentnumbernote("Show Hidden Temp:Image "+counter,imgdocid)

counter=counter+1

}

 

 

// loop to display all the hidden image documents in a stacked sequence.

number j

 

for(j=hidden-1; j>-1; j--) // loop through the number of hidden image documents

{

getpersistentnumbernote("Show Hidden Temp:Image "+j,imgdocid)

imgdoc=getimagedocumentbyid(imgdocid)

imagedocumentshow(imgdoc)

}

 

 

// Remove the temporary tags

 

deletepersistentnote("Show Hidden Temp")

}

 

// Main Program

 

// Count the number of open document windows

 

number nodocs=countdocumentwindowsoftype(5)

if(nodocs==0)

{

showalert("Please ensure at least one image is displayed.",2)

exit(0)

}

 

number counterflag=0, startingnumber=0

 

if(twobuttondialog("Append an incrementing file number to the file name?","Yes", "No"))

{

counterflag=1

}

 

if(counterflag==1)

{

if(!getnumber("Enter starting file number:",startingnumber, startingnumber)) exit(0)

}

 

// Source the front-most image and set up the save directory

image temp:=getfrontimage()

string imgname=getname(temp)

 

string currentpath, currentdirectory

if(!SaveAsDialog("Save As",imgname,currentpath))exit(0)

currentdirectory=pathextractdirectory(currentpath,2)

 

// Main processing loop to save the images whilse incrementing the counter part of the filename

 

number i

string newname, startstring

 

for(i=0; i<nodocs; i++)

{

image front:=getfrontimage()

string imgname=getname(front)

startstring=PadWithZeroes(startingnumber, 3)

 

if(counterflag==1) imgname=imgname+" "+startstring

string thispath=pathconcatenate(currentdirectory, imgname)

saveasgatan(front, thispath)

hideimage(front)

startingnumber=startingnumber+1

}

 

showallhiddenimages()

showalert(""+nodocs+" images saved to: "+currentdirectory,2)

 

if(twobuttondialog("Close all open images?","No","Yes")) exit(0)

else closeallopenimages()