summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--konq-plugins/imagerotation/imageconverter.desktop13
1 files changed, 9 insertions, 4 deletions
diff --git a/konq-plugins/imagerotation/imageconverter.desktop b/konq-plugins/imagerotation/imageconverter.desktop
index 7aba3e6..41809bb 100644
--- a/konq-plugins/imagerotation/imageconverter.desktop
+++ b/konq-plugins/imagerotation/imageconverter.desktop
@@ -5,14 +5,19 @@
[Desktop Entry]
Icon=image-x-generic
X-TDE-ServiceTypes=image/*
-Actions=convToJPEG;convToPNG;convToGIF;convToTIF;
+Actions=convToJPEGsimple;convToJPEGviaPerl;convToPNG;convToGIF;convToTIF;
X-TDE-Submenu=Convert To
TryExec=convert
-[Desktop Action convToJPEG]
-Name=JPEG
+[Desktop Action convToJPEGsimple]
+Name=JPEG (simple)
Icon=image-x-generic
-Exec=convert %f "$$( echo -n %f\[0\] | perl -pe 's/%/%%/gs; $$n=$$_; open $$h, "-|", "identify", "-format", "%d/%t", $$n; $$_=<$$h>; close $$h; chomp;' ).jpg"
+Exec=convert %f "$$( identify -format "%%d/%%t-simple.jpg" %f )"
+
+[Desktop Action convToJPEGviaPerl]
+Name=JPEG (via Perl)
+Icon=image-x-generic
+Exec=convert %f "$$( echo -n %f\[0\] | perl -pe 's/%/%%/gs; $$n=$$_; open $$h, "-|", "identify", "-format", "%d/%t", $$n; $$_=<$$h>; close $$h; chomp;' )-perl.jpg"
[Desktop Action convToPNG]
Name=PNG