Kevin M
Kevin M
Ok, I'll put it in as a known issue for now. Thanks for the report
I'll look into it. This is similar to the request in #163 , And I feel like the feature was requested. I'll look into implementation, and making it an option...
Hmm, maybe I need to test this on a high resolution. It's possible there is a small redraw delay that is only noticeable in ultra high resolutions and the window...
While in theory this might be possible, either to write an API and have JPEGView be embedded (complicated) or to use several of the supported [Interprocess Communication](https://learn.microsoft.com/en-us/windows/win32/ipc/interprocess-communications) methods. There's no...
I was just thinking... if JPEGView starts up with borderless, I wonder if you could just attach controls to it. Is your project public? It's possible someone with free time...
PR #172 is supposed to have modifications which helps with this. I haven't had a chance to review it yet... But I recall possibly having to add more code to...
Thanks for the issue report and PR. I'm going to have to see if I can write a test case to test this on both windows and Linux. Does this...
@ArthurHuyghe Have you checked out the Quick Start / Examples guide? https://sylikc.github.io/pyexiftool/examples.html#input-parameters let me know if it's unclear and I'll update it, but there's a **note** that addresses just the...
@ArthurHuyghe I just updated the FAQ to try to help with this. See if it helps: https://sylikc.github.io/pyexiftool/faq.html#shlex-split
Also, in your code above, you don't need to call `terminate()`, as when it exits the `with` block, terminate() is called automatically ```python with ExifToolHelper(logger=logging.getLogger(__name__)) as et: result = et.execute(parameters)...