Results 1 to 7 of 7

Thread: [SCRIPT] Rotate (sharpen,...) images with a right-click

  1. #1
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Germany
    Posts
    1,159

    [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

  2. #2
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Germany
    Posts
    1,159
    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!

  3. #3
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    Germany
    Posts
    297

    very cool!

    Quote 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

  4. #4
    Member registered user
    Join Date
    Jan 2003
    Location
    NY
    Posts
    86
    does this do a lossless jpg rotate?

    regards,
    Jim

  5. #5
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Germany
    Posts
    1,159

    Re: very cool!

    Quote 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.

  6. #6
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Germany
    Posts
    1,159
    Quote 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."

  7. #7
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    Germany
    Posts
    297
    Quote Originally Posted by probono
    Quote 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

  1. Adding actions to mouse right click on folders
    By knopx4me in forum Customising & Remastering
    Replies: 0
    Last Post: 03-06-2005, 08:06 PM
  2. How do you turn off tap click with a touchpad.
    By gotsanity in forum Hdd Install / Debian / Apt
    Replies: 4
    Last Post: 12-06-2004, 06:28 AM
  3. Resize and rotate.
    By Slay3r in forum General Support
    Replies: 4
    Last Post: 07-17-2004, 04:35 AM
  4. 1-Click-Warehouse for ~/dist programs
    By probono in forum Klik
    Replies: 11
    Last Post: 01-28-2004, 01:57 AM
  5. Enable double click on desktop etc.
    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
  •  


Dell PowerEdge R730 2x E5-2699V3 2.3Ghz 36 Core 128GB RAM H730 X520-I350 2x750W picture

Dell PowerEdge R730 2x E5-2699V3 2.3Ghz 36 Core 128GB RAM H730 X520-I350 2x750W

$329.99



Dell PowerEdge R630 Server 2x E5-2680 V4 = 28 Cores S130 32GB RAM NEW 480GB SSD picture

Dell PowerEdge R630 Server 2x E5-2680 V4 = 28 Cores S130 32GB RAM NEW 480GB SSD

$197.99



Dell PowerEdge R630 Server 2x E5-2640v3 2.60Ghz 16-Core 64GB H330 picture

Dell PowerEdge R630 Server 2x E5-2640v3 2.60Ghz 16-Core 64GB H330

$182.65



Dell Poweredge R630 Server 2x E5-2620 V4 =16 Cores | S130 | 32GB RAM | 2x trays picture

Dell Poweredge R630 Server 2x E5-2620 V4 =16 Cores | S130 | 32GB RAM | 2x trays

$159.99



DELL POWEREDGE R630 8 x 2.5'' 2X E5-2680V4 32GB RAM IDRAC ENT & NDC 2X 495W PSU picture

DELL POWEREDGE R630 8 x 2.5'' 2X E5-2680V4 32GB RAM IDRAC ENT & NDC 2X 495W PSU

$184.95



Dell PowerEdge R720xd 26HDD 300gb  2.5-inch E5-2697  X 2CPU 384RAM 7.2 Tb HDD  picture

Dell PowerEdge R720xd 26HDD 300gb 2.5-inch E5-2697 X 2CPU 384RAM 7.2 Tb HDD 

$180.00



Dell PowerEdge T620 8-Bay LFF Xeon E5-2660 0 2.20GHz 48GB NO HDD S110 Server picture

Dell PowerEdge T620 8-Bay LFF Xeon E5-2660 0 2.20GHz 48GB NO HDD S110 Server

$174.99



Dell PowerEdge R620 Server - 256GB RAM, 2x8cCPU, 120Gb SSD/3x900Gb SAS, Proxmox picture

Dell PowerEdge R620 Server - 256GB RAM, 2x8cCPU, 120Gb SSD/3x900Gb SAS, Proxmox

$320.00



Dell Poweredge R630 2x Xeon E5-2680 v4 2.4ghz 28-Cores / 128gb / H330 / 2x 1TB picture

Dell Poweredge R630 2x Xeon E5-2680 v4 2.4ghz 28-Cores / 128gb / H330 / 2x 1TB

$334.99



DELL PowerEdge R630 8SFF Server 2x E5-2690v4 2.6GHz =28 Cores 256GB H730 4xRJ45 picture

DELL PowerEdge R630 8SFF Server 2x E5-2690v4 2.6GHz =28 Cores 256GB H730 4xRJ45

$562.00