Short Description

Converts the image type

Versions

  • Version 1 • Released on: 2013-03-08 17:55:21
    Download
    Description:

    initial version

    /*
    - DataType contains all Types:
    	* BYTE / UBYTE - Integer 8-bit
    	* SHORT / USHORT - Integer 16 bit
    	* INT / UINT - Integer 32-bit 
    	* FLOAT - Decimal 32-bit
    	* DOUBLE - Decimal 64-bit
    - Use Unsigned versions (with the 'U' preceeding the type) by default
    */
    importClass(Packages.icy.type.DataType)
    importClass(Packages.icy.sequence.Sequence)
    importClass(Packages.icy.gui.main.MainInterface)
    
    // Get the focused Sequence, raise an exception if none.
    seq = getSequence()
    if (seq == null) throw "> Please open a sequence first 
    
    						

Leave a Review