How to | Import and Export Images
Of the many ways images can be loaded into a Wolfram System notebook, Import is the main method used to access image files on your local computer or at a remote location. The import and export of images are the most common first and last steps of practically any image processing computation.
Use the Insert ▶ File Path menu item or type a file path to import a local image file as an image object.
This example imports an image from the Wolfram Language documentation directory ExampleData:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-csxg3y

The Wolfram Language provides a general mechanism for naming and finding files that works on all systems.
Use FileNameJoin to construct a complete path to a file on the local system:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-g3cx29
By specifying the elements of an image for Import, you can get useful information before loading it into the kernel. The file type is automatically deduced from the file name extension:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-ulyec


https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-b6kc3c


https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-xemwab

Once you have imported the image, you can modify and analyze it. As a simple example, consider how the image changes appearance under different permutations of its color channels.

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-eqtqt4

Permute the channels in six different ways and form color images from each:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-dbdsxr

You can now save the six different images in your local file system by exporting them in any of the many supported file formats. In this example, the JPEG format is used because it stores efficiently.
You can export to an existing directory or create a new directory from within the Wolfram Language. Here, CreateDirectory is used to create a directory in the local system's temporary storage area:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-d5hkk8
Use FileNameJoin to construct a file name using a simple indexing scheme:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-ir2ej

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-jwc3yx
Use Table with Export to iterate the naming of the files based on the indexing scheme:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-bygui2

Import one of the saved images to verify the save operation:

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-cdg9ma

https://wolfram.com/xid/0hu22ju38e7cturdgihfxxcyhw-kw756w