Jump to content

Multiple jpegs of same image


Recommended Posts

I have needed to obtain 50 copy photos of the same 6 x 4 inch jpeg

image for advertising purposes etc. In the UK I have used Boots 10p

per image offer but many branches refuse to extend this offer to just

image submitted with 50 copies required. They stick to their

guideline that the offer refers to a CD of 50 different image refs.

Can anyone suggest a method/macro to replicate the same image and

save it as 50 or more different image file names?

Rgds

Tim

Link to comment
Share on other sites

Assuming you are using a Windows box, Click [start], select [Programs], [Accessories], [Command Prompt]. Go to the folder where the original image is stored and type:

 

for /L %n in (1,1,50) do copy original.jpg %n.jpg [Enter]

 

That makes 50 copies of original.jpg with the names 1.jpg, 2.jpg, 3.jpg etc to 50.jpg.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...