I am looking at converting 1000s of JPG to PNG format. I have seen a few online converters but I would rather have a program on my PC. Any recommendations?
+ Reply to Thread
Results 1 to 19 of 19
-
Jagabo, please do not reply to this post. Thank you.
-
There are multiple possibilities, Irfanview as already suggested , XnView, other viewers (most of them is capable to perform simple format conversion) and of course you can use ImageMagick or ffmpeg. Not sure what is your goal as jpg to png will not improve jpg and make files only bigger but...
-
-
-
Another question. I have heard PNG supports EXIF. I have also heard it doesn’t. Does anyone know for sure?
Jagabo, please do not reply to this post. Thank you. -
Ah, they do support it. Thanks for your help guys!
Jagabo, please do not reply to this post. Thank you. -
-
Anakin, I was referring to your signature:
Jagabo, please do not reply to this post. Thank you.
Back on topic, FastStone Image Viewer does batch converts. -
A simple batch file with ffmpeg can convert all files in a folder or folder tree. But since you don't want to me to answer I won't give it to you.
<edit>
Since these forums aren't only about Anakin, I decided to post the batch file. It may help someone else in the future.
If ffmpeg is in your search path:
Code:for %%F in (*.jpg) do ffmpeg -loglevel error -y -i "%%~dpnxF" -vframes 1 -f image2 -an "%%~dpnF.png"
Include the full path to ffmpeg.exe if it's not in your search path:
Code:for %%F in (*.jpg) do "C:\Program Files\ffmpeg\bin\ffmpeg" -loglevel error -y -i "%%~dpnxF" -vframes 1 -f image2 -an "%%~dpnF.png"
If you want to recurse through all subdirectories include /R in the FOR command:
Code:for /R %%F in (*.jpg) do "C:\Program Files\ffmpeg\bin\ffmpeg" -loglevel error -y -i "%%~dpnxF" -vframes 1 -f image2 -an "%%~dpnF.png"
Last edited by jagabo; 11th May 2023 at 22:40.
-
Jagabo, please do not reply to this post. Thank you.
-
Originally Posted by Anakin
-
Jagabo, please do not reply to this post. Thank you.
-
this is all coming up now when it’s been there years.
-
Jagabo, please do not reply to this post. Thank you.
-
iirc , you just went ballistic even accusing him he supposedly was condescending to others, or in that sense. Jagabo as a bully or something.
Seriously, show me those, I don't think you have any case. Unless a bullying is when someone shoves a theory or a solution at you.
adding this,
come to think of it, you might think that those elaborate theory parts are those condescending parts towards asking users. If that is the case, I can assure you that that is not the case. Frequent users, that have something to say, have their interests and sometimes it is just fun to go into details or new solutions or workflows. The blown up answers like that are just fun part, the juice to participate every day here, it is in no way aimed against op's. It just occasionally happens. You might perceive it like that, but I can assure you, it is not the case. Also, if those users are gone, users that really have to say something, there will be no replacement, also loosing others that come here only for such answers, again, because of having fun.Last edited by _Al_; 11th May 2023 at 19:49.
-
Jagabo, please do not reply to this post. Thank you.
-
--
"a lot of people are better dead" - prisoner KSC2-303
Similar Threads
-
DVD Slideshow GUI, moving a PNG with transparency on a JPG background
By Stekar in forum Newbie / General discussionsReplies: 0Last Post: 18th Nov 2019, 12:28 -
How to convert TTML2+PNG to .sup ?
By foultayeb in forum SubtitleReplies: 2Last Post: 21st Jun 2019, 18:46 -
Quick convert ttml2 with png files to srt
By olpdog in forum SubtitleReplies: 0Last Post: 21st Jun 2019, 18:45 -
Converting TTML2+PNG Subtitles to BDN(XML+PNG)
By MounaLafi in forum SubtitleReplies: 6Last Post: 25th Jan 2019, 06:48 -
Convert PNG into MP4!!
By Cauptain in forum Video ConversionReplies: 5Last Post: 22nd Aug 2018, 08:26