-
Notifications
You must be signed in to change notification settings - Fork 37
Description
Hi !
First, thank you for this very useful tool. It helped me a lot for a job.
When I was using it, I had some feature ideas that could further improve this tool.
For my job, I need to individually analyze and, if necessary, crop, copy and paste into a single Word document a lot of pictures (500 to 1700 for each task). Here are my ideas :
- An option to add cropped image to clipboard instead of saving it
I managed to do something similar using a very basic batch script in the "crops" folder with a loop saving new files to clipboard using nircmd from NirSoft, it saved me a lot of time :
@echo off
:loop
FOR /F "delims=" %%I IN ('DIR "*.*" /A-D /B /O:D') DO SET "Last=%%I"
"**nircmd directory**\nircmd.exe" clipboard copyimage "%Last%"
goto :loop
stop
- Along with a copy option, a way to copy the whole picture if no cropping is necessary.
- A way to jump to a specific image (i.e. image 145/312) without having to scroll through all images.
- An option to prevent inbac from resizing images to a specific size if they are smaller (didn't try much, but if I'm correct setting a size like 1280x720 will upscale a 640x360 picture).
- As you described in Add ability to change keyboard shortcuts #17
Thank you again for your incredible tool ! It made my job a bit faster and easier.