ImageBulb

Example 2

We have a vendor that provides an image of each product that we sell on our website. Each image is larger than we need, and has a filename that matches our item number.

Our website requires thumbnail images 100 by 100 pixels. Each filename must be the item number followed by the letter "T".

To process these images we create a profile page that sets dimensions like this:

The Destination file will be saved this way:

The Filename Filter \d matches digits in the item name. Any other characters are discarded. The Destination Filename includes <name>, which is the result of the Filename Filter (the item number), followed by "T".

If the source filename is 3091244, the destination filename will be 3091244T.

Example 1 - etsy.com
Example 2 - thumbnails
Example 3 - source filename filter
Example 4 - profile to process the same image three ways
Example 5 - profile with pages selected by filename