ConvertTo-Jpeg
ConvertTo-Jpeg copied to clipboard
A PowerShell script that converts RAW (and other) image files to the widely-supported JPEG format
https://devblogs.microsoft.com/scripting/powertip-identify-if-you-are-running-on-powershell-core/
When sorting images by date, important when mixing images from different sources, the converted files have the date of the conversion and not the date of the original file. Please...
First of all thanks for sharing your coding (the power of the commons! ;-) ). Somehow I am getting a very complex error message. This was my command after downloading...
This PR adds a switch to allow the user to remove the existing file extension before adding `.jpg`, rather than just adding `.jpg` to the end of it. Without the...
Hello, Thanks for this script, super helpful! I'm having issues with a set of files (one example attached). This is odd since I've been using it but not sure why...
I need to convert png images to jpg but when converting it converts them to JPG with transparency even from PNG images that don't have transparency, is there a way...
The script works fine. Output file name now look like filename.heic.jpg. On changing line 91-92 to the followings will solve the issue. ``` $extension = $inputFile.FileType $outputFileName = $inputFile.Name -replace...
Various changes and improvements. Changes should all be backwards compatible and behind flags, should be almost no change in behavior unless the new flags are used. Open to feedback, feel...