# How to export covers?

**URL:** https://community.mp3tag.de/t/how-to-export-covers/13738
**Category:** Support
**Created:** [August 9, 2012, 12:41pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738 "2012-08-09T12:41:58Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![kittmaster](https://community.mp3tag.de/user_avatar/community.mp3tag.de/kittmaster/32/14793_2.png) [@kittmaster](https://community.mp3tag.de/u/kittmaster)
#### Post date: [August 9, 2012, 12:41pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/1 "2012-08-09T12:41:58Z")

</div>

Is there a way to have MP3TAG take the embedded image of the file, export it, and custom name it based on the file it was exported from.......and also resize it to a thumbnail specified value?

I'm not even sure if this can be done, I think so since I've seen the album generator platform, but I'm looking for a simple way to do this.....

I assume I'd have to also specify some output directory to dump each unique image for each mp3 file.

is this possible?

---

<div class="post-metadata">

### Author: ![DetlevD](https://community.mp3tag.de/user_avatar/community.mp3tag.de/detlevd/32/123_2.png) [@DetlevD](https://community.mp3tag.de/u/DetlevD)
#### Post date: [August 9, 2012, 12:50pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/2 "2012-08-09T12:50:57Z")

</div>

> [@kittmaster](#):
>
> Is there a way to have MP3TAG take the embedded image of the file, export it, and custom name it based on the file it was exported from.......and also resize it to a thumbnail specified value? ...

To export an embedded image to disk file use action "Export cover to file"  
[https://docs.mp3tag.de/actions/export-cover](https://docs.mp3tag.de/actions/export-cover)  
Resizing of the image is not possible yet, because Mp3tag is a tagger application, but not a graphical application.

DD.20120809.1651.CEST

---

<div class="post-metadata">

### Author: ![kittmaster](https://community.mp3tag.de/user_avatar/community.mp3tag.de/kittmaster/32/14793_2.png) [@kittmaster](https://community.mp3tag.de/u/kittmaster)
#### Post date: [August 9, 2012, 1:08pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/3 "2012-08-09T13:08:10Z")

</div>

Oh my am I embarrassed, that was super simple......just make a path and %% and it does it.....wow, thanks!

LOL

Chris

---

<div class="post-metadata">

### Author: ![kittmaster](https://community.mp3tag.de/user_avatar/community.mp3tag.de/kittmaster/32/14793_2.png) [@kittmaster](https://community.mp3tag.de/u/kittmaster)
#### Post date: [August 9, 2012, 5:36pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/4 "2012-08-09T17:36:15Z")

</div>

OK another issue has arisen, and posts back to 2009 seem to have this as a wish list.

Is there a way to convert any NON .jpg cover art to .jpg formats? I have thousands of songs and their covers could be all over the place in terms of format.

My CSV is being set to .jpg.....(not realizing it exports the primary image format type it was embedded with). No way I can go back and figure out what is what for this huge upload I have to do.

if not.......is there a way to parse the cover art extension and have my export script adjust the output format between gif, jpg, png etc???

Thanks

---

<div class="post-metadata">

### Author: ![kittmaster](https://community.mp3tag.de/user_avatar/community.mp3tag.de/kittmaster/32/14793_2.png) [@kittmaster](https://community.mp3tag.de/u/kittmaster)
#### Post date: [August 9, 2012, 10:37pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/5 "2012-08-09T22:37:59Z")

</div>

I figured it out, hope this helps others in the future.

Note: I'm using this as an export function, for a csv output, I'm using

%\_cover\_mimetype% which will show up as \>\> image/gif or image/jpg in the output......etc etc.

I'm appending mimetype dynamically to my output tags as I need them using this final code:

```
$replace(%_cover_mimetype%,image/,)

```

So basically, it give me the cover arts extension only used in the art file. So I get myfile.jpg or myfile.gif or myfile.png

Hopefully this may help someone in the future.

Greetz

---

<div class="post-metadata">

### Author: ![kittmaster](https://community.mp3tag.de/user_avatar/community.mp3tag.de/kittmaster/32/14793_2.png) [@kittmaster](https://community.mp3tag.de/u/kittmaster)
#### Post date: [August 10, 2012, 10:07am UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/6 "2012-08-10T10:07:13Z")

</div>

I was also informed an alternate way to do this would be:

```
$replace(%_cover_mimetype%,image/, %dummy%)

```

Regards,

---

<div class="post-metadata">

### Author: ![DetlevD](https://community.mp3tag.de/user_avatar/community.mp3tag.de/detlevd/32/123_2.png) [@DetlevD](https://community.mp3tag.de/u/DetlevD)
#### Post date: [August 10, 2012, 11:53am UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/7 "2012-08-10T11:53:41Z")

</div>

> [@kittmaster](#):
>
> I was also informed an alternate way to do this would be:
> 
> ```
> $replace(%_cover_mimetype%,image/, %dummy%) 
> 
> ```
> 
> Regards,

Note this ...

**$replace(%\_cover\_mimetype%,'image/',,'jpeg','jpg')**

DD.20120810.1554.CEST

---

<div class="post-metadata">

### Author: ![system](https://community.mp3tag.de/uploads/default/original/2X/c/ce7035d426cb755a7916793326d23b465222a407.png) [@system](https://community.mp3tag.de/u/system)
#### Post date: [February 9, 2026, 12:23pm UTC](https://community.mp3tag.de/t/how-to-export-covers/13738/8 "2026-02-09T12:23:59Z")

</div>


