Re: Crash



Lawrence D'Oliveiro wrote:
Currently I'm trying to use xzgv to try to bring some order to those
images. Its tagging function is useful, but having to type in the
complete path to the destination directory for a move every time is
getting a bit wearying. Also there doesn't seem to be an option to apply
an arbitrary shell command to the set of tagged images.

What kind of tagging are you talking about?
Look below if it is the info in the pictures itself.

Any suggestions for another image-management app to try?

First you need to know HOW you want to sort them. I have some
wallpapers:
[11:14:54] [~/wallpaper]
houghi@penne : find . -name "*.jpg"|wc -l
26638

So first decide what you want to sort on. Is it size, subject, name,
date, ...

Now imagine that you took the pictures yourself with a digital camera.
What I would do is sort on date. The date a picture is taken can be
gotten with `identify`. Install ImageMagick.

Something like this:
houghi@penne : identify -verbose PICT3435.JPG|grep "Date Time:"
Date Time: 2005:09:03 06:04:08.
That way you can make directories of dates and place the pictures in it:

That would go something like:
#!/bin/bash
for PICTURE in *
do
#Get the date
DATE=` identify -verbose $PICTURE | grep "Date Time:" | \
awk '{print $3}'|sed -e "s/:/_/g"`
# See if the directory exists and if not, make it
test -d $DATE && mkdir $DATE
#Move the picture to the directory
mv $PICTURE $DATE/.
# something to look at
echo "$PICTURE moved to $DATE"
done

This is dirty untested code. It will most likely not work if you have
strange caracters in your filenames. It also will not be the fastest
way.

You can also look at different other things, like the camera name and
such (see file:///usr/share/doc/packages/ImageMagick/www/identify.html
for more info) You can differentiate between portrait and landscape, by
size, ...

Once you have declutterd the pictures, it will be a lot easier to filter
manually with F-spot. I myself use JAlbum to make php pages.
You can then look at one directory, and because it is on one day, you
can easily rename the directory to whatever went on on that day. This
will make it easier again to regroup them.
--
houghi Please do not toppost http://houghi.org
Roses are #FF0000, Violets are #0000FF,
All my base are belong to you. Happy Valentine.
.



Relevant Pages

  • Re: Problem displaying web pages
    ... Compress graphics file sizes to create smaller Publisher Web ... You add it to the picture toolbar after installing the SP. ... rendering two different versions of both your company logo and the ... viewing this site in publisher the images are good quality. ...
    (microsoft.public.publisher.webdesign)
  • Re: How can I hyperlink to an enlarged picture in Publisher 2003?
    ... I was referencing the way you produce your html ... One of the places where Publisher starts to feel its limits is when the ... When you resize and optimize your images, ... Picture> Size tab). ...
    (microsoft.public.publisher.webdesign)
  • Re: Making images a cell component
    ... Images will always float on top. ... Did you include the column with the pictures in the range to sort? ... Are the rows high enough to make sure that each picture is within the row after ... "Dave Peterson" wrote: ...
    (microsoft.public.excel.misc)
  • Re: How do I create mouse overs for web documents?
    ... I did tweak the sky and the picture is a LITTLE bit clearer. ... Many thanks David. ... > you can see that you have added the alt tags to your images as they load ... and to get the alt tags to work in Pub 2003 requires ...
    (microsoft.public.publisher.webdesign)
  • Re: How to hide jpg
    ... To create your single large data file you could write a VB app to Open a new file for Binary and use Put to write an array of 101 Longs into the file. ... This will enable you to store one Long value and 50 "pairs of Longs" with the first Long containing the number of images the file contains and each "pair of Longs" thereafter specifying an "offset from the beginning" in LongA and the image data length in LongB. ... Then you can use that single data file in your own main VB program by writing code to extract the "number of images in the file" and then "look at" each appropriate pair of Longs in turn and "Get" data of the appropriate size and starting at the appropriate point into a Picture Box or StdPicture object or whatever. ... Private Declare Function GlobalAlloc Lib "kernel32" _ ...
    (comp.lang.basic.visual.misc)