-
Notifications
You must be signed in to change notification settings - Fork 61
Description
Thanks for creating this port of DeOldify, It's really nice to be able to simply run it from Windows but I think some details could be changed to make it even smoother for the repeated usage.
-
Support for drag and drop of input file would be really nice
-
I think the button to run the colorization process is rather redundant. Unless you open a wrong file you just want to run the colorization process immediately so I think getting rid of the extra button would save one (un)necessary click for most users.
-
The save dialog should pre-populate the file name textbox with the original file name. I think most users want to use a new name derived from the original one so it would save them some typing,
-
The file mask should definitely change the descriptions in order to enable selecting the right format by pressing just one key and not by pressing "I" several times. =}
I.e. the line number 680 in UI.cs:
SFD.Filter = "Images (*.bmp)|*.bmp|Images (*.emf)|*.emf|Images (*.exif)|*.exif|Images (*.gif)|*.gif|Images (*.ico)|*.ico|Images (*.jpg)|*.jpg|Images (*.png)|*.png|Images (*.tiff)|*.tiff|Images (*.wmf)|*.wmf";
should change to this:
SFD.Filter = "BMP images (*.bmp)|*.bmp|EMF images (*.emf)|*.emf|EXIF images (*.exif)|*.exif|GIF images (*.gif)|*.gif|Icons (*.ico)|*.ico|JPEG jmages (*.jpg)|*.jpg|PNG images (*.png)|*.png|TIFF images (*.tiff)|*.tiff|WMF images (*.wmf)|*.wmf";
-
What about an option to run the app from command line just in console mode?
> DeOldify.NET.artistic.windows.simd.w32.exe inputfile.png outputfile.png
Colorization in progress: ................
Done.
Just my two cents... =)