Importing Graphics and Sounds
Mathematica allows you not only to export graphics and sounds, but also to import them. With
Import you can read graphics and sounds in a wide variety of formats, and bring them into
Mathematica as
Mathematica expressions.
| Import["name.ext"] | import graphics from the file in a format deduced from the file name |
| Import["file","format"] | import graphics in the specified format |
| ImportString["string","format"] | import graphics from a string |
Importing graphics and sounds.
This imports an image stored in JPEG format.
| Out[1]= |  |
This shows an array of four copies of the image.
| Out[2]= |  |
Import yields expressions with different structures depending on the type of data it reads. Typically you will need to know the structure if you want to manipulate the data that is returned.
| Graphics[primitives,opts] | resolution-independent graphics |
| Image[data,opts] | resolution-dependent bitmap images |
| {graphics1,graphics2,...} | animated graphics |
| Sound[SampledSoundList[data,r]] | sounds |
Structures of expressions returned by Import.
This shows the overall structure of the graphics object imported above.
| Out[3]//Shallow= |  |
This extracts the array of pixel values used.
Here are the dimensions of the array.
| Out[5]= |  |
This shows the distribution of pixel values.
| Out[6]= |  |
This shows a transformed version of the image.
| Out[7]= |  |