Convert from JPEG to JPEG-XL "transcode", like cjxl.exe .

Ideas for improvements and requests for new features in XnView MP

Moderators: XnTriq, helmut, xnview

Post Reply
Jou
Posts: 60
Joined: Sat Nov 03, 2007 9:38 pm
Contact:

Convert from JPEG to JPEG-XL "transcode", like cjxl.exe .

Post by Jou »

The command line too CJXL does, when the source it a jpeg, TRANSCODE the destination .jxl. At least when using lossless (-d 0). Which gives me the guarantee that the destination will give me bit-exact the same view as the original, just using about 15% to 25% less space. And it is faster than full encoding, like when the source is .PNG.
Will XnView include that specific part of CJXL, as long as there is no action selected when using conversion?
Gaming in 4k / 6k / 8k / 15k / 16k? Yes! https://joumxyzptlk.de
User avatar
masterjp
Posts: 426
Joined: Fri Feb 13, 2009 4:37 pm
Location: Duesseldorf, Germany

Re: Convert from JPEG to JPEG-XL "transcode", like cjxl.exe .

Post by masterjp »

A JPEG to JPEG-XL transcoding function would be nice for future releases of XnViewMP.
Actually the JPEG-XL encoder (version 0.6.x) is in an early (!) stage.
It does not have all functions of the final release.
So there are many features, you know from jpeg, which are currently not available.

For my JPEG to JPEG-XL conversions I use the JPEG-XL encoder in my picture directories and wrote a small Windows Batch file, to convert all pictures within this directory. It does not encode subdirectories!
I can give you the sourcecode of the cmd file to try it.
Use a text editor and save the following code in a .cmd file. You can copy the .cmd file together with the cjxl.exe (JPEG XL encoder) within your jpeg picture directory. It creates a new subfolder 'conversion' in your jpeg folder and use it for the transcoded jpeg xl pictures. So you can later check, if everything is alright. The '-e 9' stands for the highest transcoding compression level. It uses much time. If it is to slow for your computer, you can use '-e 8' instead. A build of the jpeg xl encoder you can find here: https://jeremylee.sh/bins/

Code: Select all

MD Conversion
for %%f in ("*.jpg") do (
cjxl.exe "%%~nf.jpg" "Conversion\%%~nf.jxl" -e 9
)
PC: Intel 8700k + Asus Z370-F + 16 GB RAM G.Skill + Asus RTX 3050 OC + Samsung SSD
OS: Windows 10 Pro 64bit 22H2 |
GFX: XN-View 2.51.5 | XnViewMP 1.6.5 | XnConvert 1.100.1 | Adobe Photoshop Elements 2024 | Elements XXL 11 | Paint.Net
Post Reply