# # Servicemenu image converter, by Jens Benecke . # Released under the same license as the KDE core distribution (GPL 2.0). # [Desktop Entry] X-TDE-ServiceTypes=image/* Actions=convToJPEG;convToPNG;convToGIF;convToTIF; X-TDE-Submenu=Convert To TryExec=convert [Desktop Action convToJPEG] Name=JPEG Icon=image-x-generic Exec=convert %f "`echo %f | perl -pe 's/\.[^.]+$//'`.jpg" [Desktop Action convToPNG] Name=PNG Icon=image-x-generic Exec=convert %f "`echo %f | perl -pe 's/\.[^.]+$//'`.png" [Desktop Action convToTIF] Name=TIF Icon=image-x-generic Exec=convert %f "`echo %f | perl -pe 's/\.[^.]+$//'`.tif" [Desktop Action convToGIF] Name=GIF Icon=image-x-generic Exec=convert %f "`echo %f | perl -pe 's/\.[^.]+$//'`.gif"