<div dir="ltr">Not sure if helpful to you, but you can easily do this on the backend db if you know sql.<div><br>Care should be taken, you can trash the db.</div><div><br></div><div>If you are using the SQLite db with Digikam you can download the sqlite3 cli and run sql commands and export to txt file. Or use a GUI tool.</div><div><br></div><div>The three tables at play are: Tags, Images, and ImageTags</div><div><br></div><div>You can use a select to lookup the id in Tags:</div><div>select * from tags;</div><div><br></div><div>Then another select to get a list of files with that tagid:</div><div>select <a href="http://images.name">images.name</a> from images, imagetags where imagetags.tagid=100 and <a href="http://images.id">images.id</a>=imagetags.imageid;<br></div><div><br></div><div><br></div></div>