Version: (using KDE KDE 3.1.2) Installed from: Debian testing/unstable Packages Compiler: gcc version 3.3 (debian) OS: Linux When right clicking on an image file in konqeror I can select an item from the context menu called "Im Uhrzeigersinn rotieren" (german for "rotate clockwise"). When I apply this to the image file:/home/bjoern/data/grafigs/fotos/2003-03 Suedamerika/Img_1165.jpg it doesn't do anything. Renaming the folder to "2003-03-Suedamerika", i.e. replacing the space by a hyhphen, giving file:/home/bjoern/data/grafigs/fotos/2003-03-Suedamerika/Img_1165.jpg helps: the image is rotated properly. Therefore it seems to me that this feature doesn't handle spaces in filenames properly.
Oh, further investigation revealed that the "Rotate" menu is a knoppix-specific servicemenu. So I fixed it and reported the fix to the appropriate person from the KOPPIX team
We do have a rotate menu in our KDE releases. That means we would be interested in your fix as well ;-)
Well, the corresponding Knoppix service menus are /usr/share/apps/konqueror/servicemenus/rotate_jpg.desktop /usr/share/apps/konqueror/servicemenus/rotate_png.desktop referring to Exec=jpegtran-wrapper %u -rotate 270 (and so on) aka /usr/bin/jpegtran-wrapper, a script containing the following lines #!/bin/bash FILE="$1" shift jpegtran "$@" -copy all -outfile "$FILE.tmp$$" "$FILE" && mv -f "$FILE.tmp$$" "$FILE" I simply sorrounded the parms of jpegtran by quotes (exactly as quoted above). That's all.