You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i tried your app and to my dismay i realised it doesnt support reading generation data from webp files, even if it's there the same way as it is in png files.
Is there any way to add support for webp or mod some file to do it?
Also would be great to be able to add folders recursively. So one can just add txt2img-images and get pics from all the dated subfolders at the same time.
Cheers
The text was updated successfully, but these errors were encountered:
var fileList = Directory(selectedDirectory)
.listSync()
.map((item) => item as File)
.where((item) {
if (item.path.endsWith(".png") ||
item.path.endsWith(".jpg") ||
item.path.endsWith(".jpeg")) {
return true;
}
return false;
}).toList();
Can i just add webp to the list and it should work? Also, saw it should recursively read from directories but it doesnt for me. I donwloaded compiled exe.
Hi, i tried your app and to my dismay i realised it doesnt support reading generation data from webp files, even if it's there the same way as it is in png files.
Is there any way to add support for webp or mod some file to do it?
Also would be great to be able to add folders recursively. So one can just add txt2img-images and get pics from all the dated subfolders at the same time.
Cheers
The text was updated successfully, but these errors were encountered: