Results 1 to 2 of 2

Thread: Deleting Metadata

  1. #1
    Join Date
    May 2007
    Location
    Berlin, Germany
    Beans
    50
    Distro
    Ubuntu 7.04 Feisty Fawn

    Deleting Metadata

    Hey,

    The wife is looking for a program that will let her easily delete all the metadata in a photo. It was really easy in XNview under windows, but so far, I can't find any information on doing that here. Everyone seems to only want to tag and comment and other stuff that we don't need, but nobody wants to delete them. (and seeing as how it halves the size of email sized photos...)...

    Can anyone reccomend a program or a plugin that can help?

    Thanks,
    Andrew

  2. #2
    Join Date
    Jul 2008
    Location
    $HOME
    Beans
    1,030
    Distro
    Ubuntu 9.10 Karmic Koala

    Talking Re: Deleting Metadata

    I don't know of any plug-ins for graphical programs, but I can do it easily from the command line.

    Install the necessary software in Synaptic, or do the following command in a terminal:

    Code:
    sudo apt-get install exiv2
    Let's imagine that you have an image called “photo.jpg” in your home directory.

    Code:
    exiv2 -dt photo.jpg
    That will delete the EXIF thumbnail. If you find that your files are unnecessarily large, it will because of an embedded thumbnail image.

    Code:
    exiv2 -de photo.jpg
    That will remove the entire EXIF section from the file, for maximum space saving. It will probably not save much more space than just deleting the thumbnail, though.

    Code:
    exiv2 --help
    For further usage information.
    If people were nicer, I'd answer more queries here!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •