-
Senior Member
registered user
[SCRIPT] Rotate (sharpen,...) images with a right-click
For Windows XP, there is a power tool that lets you rotate images by right-clicking. Now, there is this feature for Knoppix too. Simply run the following or put it in your knoppix.sh and then you can rotate images in Konqueror with a right-click.
Code:
#!/bin/bash
#################### OUTDATED, FOR NEW VERSION SEE BELOW ####################
# rotate images by right-clicking in Konqueror
# by probono
# This script is published under the GPL
mkdir -p ~/.kde/share/apps/konqueror/servicemenus
cat >> ~/.kde/share/apps/konqueror/servicemenus/rotate_ccw.desktop <<EOF
[Desktop Entry]
ServiceTypes=image/png,image/jpeg,image/gif
Actions=rotate_ccw
[Desktop Action rotate_ccw]
Name=Rotate counter-clockwise
Icon=rotate_ccw
Exec=/bin/sh -c "for file in %U; do mogrify -rotate 270 $file; done"
EOF
cat >> ~/.kde/share/apps/konqueror/servicemenus/rotate_cw.desktop <<EOF
[Desktop Entry]
ServiceTypes=image/png,image/jpeg,image/gif
Actions=rotate_cw
[Desktop Action rotate_cw]
Name=Rotate clockwise
Icon=rotate_cw
Exec=/bin/sh -c "for file in %U; do mogrify -rotate 90 $file; done"
EOF
-
Senior Member
registered user
Btw, this solution is done using imagemagick. You can also resize, rotate, sharpen, color reduce, or add special effects to an image or image sequence and save your completed work in the same or differing image format. Have a look at /usr/share/doc/imagemagick/html/ImageMagick.html in Knoppix.
For information on how to make the context menus, there is an excellent article on http://developer.kde.org/documentati...vicemenus.html
So, be creative!
-
Senior Member
registered user
very cool!

Originally Posted by
probono
Btw, this solution is done using imagemagick. You can also resize, rotate, sharpen, color reduce, or add special effects to an image or image sequence and save your completed work in the same or differing image format. Have a look at /usr/share/doc/imagemagick/html/ImageMagick.html in Knoppix.
For information on how to make the context menus, there is an excellent article on
http://developer.kde.org/documentati...vicemenus.html
So, be creative!
Thats a very cool script! I like it a lot.
I created a bug report and will try to get it in the next iso, if I find the time. (my todo list grows longer
)
cu
Fabian
-
does this do a lossless jpg rotate?
regards,
Jim
-
Senior Member
registered user
Re: very cool!

Originally Posted by
Fabianx
I created a bug report and will try to get it in the next iso
If you want to include it in the ISO, you don't have to put the script on the CD, just copy the files it creates in ~/.kde/share/apps/konqueror/servicemenus/ to /usr/share/apps/konqueror/servicemenus.
-
Senior Member
registered user

Originally Posted by
true1ever
does this do a lossless jpg rotate?
the new version does, and it also preserves EXIF data:
Code:
#!/bin/bash
# Lossless JPG image rotation in the Konqueror context menu
# uses jpegtran which comes with Knoppix
#
# by probono
# GPL
mkdir -p ~/.kde/share/apps/konqueror/servicemenus
cat >> ~/.kde/share/apps/konqueror/servicemenus/rotate.desktop <<EOF
[Desktop Entry]
ServiceTypes=image/jpg,image/jpeg
Actions=rotatejpgCCW;rotatejpgCW;fliphor;flipver
[Desktop Action rotatejpgCCW]
Name=Rotate Counterclockwise
Icon=rotate_ccw
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -rotate 270 -outfile rotate \$file; mv rotate \$file; done"
[Desktop Action rotatejpgCW]
Name=Rotate Clockwise
Icon=rotate_cw
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -rotate 90 -outfile rotate \$file; mv rotate \$file; done"
[Desktop Action fliphor]
Name=Flip Horizontal
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -flip horizontal -outfile rotate \$file; mv rotate \$file; done"
[Desktop Action flipver]
Name=Flip Vertical
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -flip vertical -outfile rotate \$file; mv rotate \$file; done"
EOF
It is now no longer based on imagemagick, but now based on http://www.solidhosting.nl/~arends/kde/ " For losness rotating JPG images the script uses jpegtran. This program is provided by the Indepentent JPEG group in libjpeg."
-
Senior Member
registered user

Originally Posted by
probono

Originally Posted by
true1ever
does this do a lossless jpg rotate?
the new version does, and it also preserves EXIF data:
Code:
#!/bin/bash
# Lossless JPG image rotation in the Konqueror context menu
# uses jpegtran which comes with Knoppix
#
# by probono
# GPL
mkdir -p ~/.kde/share/apps/konqueror/servicemenus
cat >> ~/.kde/share/apps/konqueror/servicemenus/rotate.desktop <<EOF
[Desktop Entry]
ServiceTypes=image/jpg,image/jpeg
Actions=rotatejpgCCW;rotatejpgCW;fliphor;flipver
[Desktop Action rotatejpgCCW]
Name=Rotate Counterclockwise
Icon=rotate_ccw
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -rotate 270 -outfile rotate \$file; mv rotate \$file; done"
[Desktop Action rotatejpgCW]
Name=Rotate Clockwise
Icon=rotate_cw
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -rotate 90 -outfile rotate \$file; mv rotate \$file; done"
[Desktop Action fliphor]
Name=Flip Horizontal
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -flip horizontal -outfile rotate \$file; mv rotate \$file; done"
[Desktop Action flipver]
Name=Flip Vertical
Exec=/bin/sh -c "for file in %U; do jpegtran -copy all -flip vertical -outfile rotate \$file; mv rotate \$file; done"
EOF
It is now no longer based on imagemagick, but now based on
http://www.solidhosting.nl/~arends/kde/ " For losness rotating JPG images the script uses jpegtran. This program is provided by the Indepentent JPEG group in libjpeg."
thx, both scripts will be added in next iso.
cu
Fabian
Similar Threads
-
By knopx4me in forum Customising & Remastering
Replies: 0
Last Post: 03-06-2005, 08:06 PM
-
By gotsanity in forum Hdd Install / Debian / Apt
Replies: 4
Last Post: 12-06-2004, 06:28 AM
-
By Slay3r in forum General Support
Replies: 4
Last Post: 07-17-2004, 04:35 AM
-
Replies: 11
Last Post: 01-28-2004, 01:57 AM
-
By Dallas Eschenauer in forum General Support
Replies: 2
Last Post: 09-06-2003, 09:19 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules

Dell Poweredge R720 8SFF 2.5" x Xeon E5-2680 v2 2.8GHz 20-Cores 128gb 4x Trays
$349.99

Dell EMC PowerEdge R440 Xeon silver 4215 2.5GHz 16 GB ram 2x 550W PSU No HDD
$275.00

Microsoft Windows Server 2022 Standard 64-bit License & DVD 16 Core US Shipping
$34.99

Broadcom 9600-24i Tri-Mode RAID Controller 4.0 NVMe SAS SATA NEW 05-50111-01003
$639.69

Dell PowerEdge R620 2x Xeon E5-2630 v2 3.1GHz 2.5" 4-BAY 32GB RAM No OS 2x 495w
$168.95

Dell Poweredge R720 8SFF 2.5" 2x Xeon E5-2680 v2 2.8GHz 20-Cores 64gb 4x Trays
$259.99

SuperMicro 4U CSE 847 36 Bay LFF Barebone 2x 1280W w/ 2x Bays 2.5 Rear w/Trays
$499.99

Dell R640 10 bay,8-Nvme slots,2-h/s, 2.0 TPM, HP Fans,Idrac9Ent,H330,2x1100w
$325.00
![WINDOWS SERVER 2025 [REMOTE DESKTOP SERVICES] 50 USER RDS CAL SEALED picture](/store/img/g/Fn8AAOSwCcpn9N3z/s-l225/WINDOWS-SERVER-2025-REMOTE-DESKTOP-SERVICES-50-USE.jpg)
WINDOWS SERVER 2025 [REMOTE DESKTOP SERVICES] 50 USER RDS CAL SEALED
$119.18

Dell PowerEdge R420 Rack Server Intel Xeon 1.90GHz Six-Core 8GB DDR3 RAM
$95.00