Posted: . At: 12:36 PM. This was 4 years ago. Post ID: 13934
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.


How to create thumbnails of dds files in Ubuntu or Mint.


Thumbnailing for the DirectDraw Surface file format is not supported in Linux with the Caja file manager, but this is easy to fix.

The /usr/share/thumbnailers/ directory contains all of the thumbnailer files that automatically create thumbnails in the file manager for Caja. Just create a file named dds.thumbnailer and put this in it.

2
3
4
[Thumbnailer Entry]
Exec=/usr/bin/convert -thumbnail x%s %i png:%o
MimeType=image/x-dds;

This is like a little script, it contains an Exec line that defines a command used to convert the file to a thumbnail. This is very simple. This can be used for any file type that convert understands.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.