In particular a way to convert PNG files to JPG. Note this a very specific conversion and not a request to convert anything to everything.

Agreed; your point cannot be disputed.there are hundreds more out there that would be just as legitimate, don't you think?
As you may have gleaned by reading my thousand posts over a decade Scripting is a gift not bestowed upon me.What's wrong with using one of the command line versions of tools like Irfanview or ImageMagick and write a one-liner that does this trick?
Code: Select all
$magick = "<path to>\ImageMagick\magick.exe";
foreach($item, <get SelectedItemsPathNames |>, , "e") {
if (exists($item) == 2) { continue; }
runret("""$magick"" mogrify -format jpg ""$item""");
status "Processing: " . gpc($item, "file");
}
Code: Select all
::foreach($item, <selitems |>){savethumb($item,"* ","100%",,"jpg100")}
savethumb
before