FormatFromName - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ImageTools

  

FormatFromName

  

guess image file format from name

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

FormatFromName( file )

Parameters

file

-

string; name of an image file

Description

• 

The FormatFromName command examines the passed filename and determines the image file format based on the extension. It returns either a member of ImageTools[Formats] or NULL if it was unable to guess.

• 

The parameter file is the name of the image file.

• 

The extensions .jpg, .jpeg, .jpe, and .jeg are recognized as JPEG files.

• 

The extensions .tif, .tiff, and .tff are recognized as TIFF files.

• 

The extensions .bmp and .dib are recognized as BMP files.

• 

The extension .png is recognized as a PNG file.

Examples

withImageTools:

FormatFromNamephoto.jpeg

JPEG

(1)

FormatFromName/tmp/snail.tif

TIFF

(2)

FormatFromNamemusic.mp3

See Also

ImageTools

ImageTools[Formats]

ImageTools[Read]

ImageTools[Write]