Rob_G Posted January 27, 2023 Share Posted January 27, 2023 (edited) Sometimes box images have too much transparency padding which just makes them display improperly. There is an easy fix for this! https://imagemagick.org/script/download.php If you are running windows, download ImageMagick-7.1.0-58-Q16-x64-dll.exe I don't think this warranted creating a powershell workflow for running multiple jobs at once since it's already very quick. I just choose a folder of files I want to fix and run a small powershell script. Please don't run it against ALL your images, just ones where boxes have uneven cropping. I used it on 'Vectrex' and 'SNK Neo Geo CD' 3D boxes. $foldertofix = "D:\Launchbox\Images\GCE Vectrex\Box - 3D" $exe = "c:\Program Files\ImageMagick-7.1.0-Q16\magick.exe" $files = dir "$foldertofix\*.png" -Recurse $files | ForEach-Object { $file = $_.FullName Write-host "Fixing $file" & $exe $file -fuzz 1% -trim +repage $file } Results before and after below: Edited January 27, 2023 by Rob_G Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.