Search found 1 match

by john1120
2017-05-31T05:18:11-07:00
Forum: Users
Topic: Convert images which have the same names but different extensions
Replies: 3
Views: 3729

Convert images which have the same names but different extensions

For example, I have two files:


aaa.jpg (with cat)
aaa.png (with dog)


As you can see, images are different, despite of their names, which are the same.

I want to convert both these images to one single format.

The basic attempt for this task is

mogrify -format jpg *.png

But it doesn't ...