Scripting Resources for DigitalMicrograph™ |
Flip Image | |
Function |
Flips the front-most image about either its horizontal or vertical axis, into a new image. |
Version |
version:20040301, v1.0 |
Author |
D. R. G. Mitchell |
Acknowledgements |
- |
Comments |
Shows how to use the icol and irow intrinsic variables. |
System Requirements |
Should be compatible with all recent versions of DigitalMicrograph. |
Known Issues |
- |
Supported |
Yes |
Included Files |
Main script file. |
Source Code |
// Script to flip the foremost about the horizontal or vertical axis // D. R. G. Mitchell, March 2004
// version:20040301
// v1.0 // adminnospam@dmscripting.com (remove the nospam to make this email address work)
image front:=getfrontimage() image temp=imageclone(front) number xsize, ysize getsize(front, xsize, ysize)
if(twobuttondialog("Which Axis to Flip the Image About?", "Horizontal","Vertical")) { // Flip about the x axis - horizontal temp=front[icol, ysize-irow] front=temp exit(0) } else { // Flip about the y axis - horizontal temp=front[xsize-icol, irow] front=temp exit(0) }
|