Your message dated Sat, 27 Dec 2008 10:25:57 GMT
with message-id <[email protected]>
and subject line igal has been removed from Debian, closing #162795
has caused the Debian Bug report #162795,
regarding igal: should allow use of integral thumbnail [patch]
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
162795: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=162795
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: igal
Version: 1.3-1
Severity: wishlist

According to the Exif standard, an image file from a digital camera
includes both the full size image and a thumbnail.  The thumbnail can
be accessed much faster than constructing a new thumbnail from the
full size image.  I suggest the following changes, which use the
external program jhead to extract the thumbnail.

                - Jim Van Zandt



--- igal3       Sun Sep 29 10:49:26 2002
+++ igal        Sun Sep 29 11:36:54 2002
@@ -67,6 +67,7 @@
 $opt_cs = "0";         # --cs to include camera settings from in caption file
 $opt_C = "0";          # same as -c, but preserve image names as captions
 $opt_f = "0";          # -f to force thumbnail regeneration
+$opt_it = "0";         # --it to use internal thumbnails if present
 $opt_n = "0";          # -n to use image file names for the .html files
 $opt_k = "0";          # -k for the captions to also be used as slide titles
 $opt_x = "0";          # -x to omit the image count from the caption
@@ -98,6 +99,7 @@
               -f          force thumbnail regeneration
               -h          displays this brief help; same as --help
               -i <file>   name of the main thumbnail index file (index.html)
+              --it        use internal thumbnails if present
               -k          use the image captions for the HTML slide titles
               -n          use image file names for the HTML slide files
               -p <n>      cellpadding value of thumbnail index tables (3)
@@ -121,10 +123,16 @@
 END_OF_USAGE
 
 # process command-line arguments (overriding defaults above)
-GetOptions('d=s','e=s','y=i','w=i','b=s','p=i','t=i','i=s','q=i','c','C','ct','cc','cs','f','n','k','x',
+GetOptions('d=s','e=s','y=i','w=i','b=s','p=i','t=i','i=s','it','q=i','c','C','ct','cc','cs','f','n','k','x',
            'r','s','h','a','as','u','ad','xy=i','bigy=i','help','www') or die 
"$usage";
 
 die $usage if ($opt_help or $opt_h);
+
+# find out if jhead exists
+if ($opt_it && !&exist("jhead")) {
+       die "ERROR: The --it switch requires the command \"jhead\" which is not 
installed\non your system.  Please obtain it from 
http://www.sentex.net/~mwandel/jhead/\nand install it in order to use internal 
thumbnails.\n";
+}
+
 # deal with the competing -y and --xy options
 if (($opt_y == 0) and ($opt_xy == 0)) {
        $opt_y = 75;    # default, if neither -y nor --xy is specified
@@ -350,13 +358,16 @@
        die "Can't open $fullfile\n" unless (-r $fullfile);
        $fullthumb = "$opt_d/$thumbprefix$file";
        if ((! -e $fullthumb) or $opt_f) {
+           $command = "jhead -st \"$fullthumb\" \"$fullfile\"";
+           if (!$opt_it or `$command` =~ m/contains no thumbnail/) {
                $command = "convert";
                $command .= " -quality $opt_q" if (($imgext[$i] =~ m/jpe?g/i) 
or ($imgext[$i] =~ m/png/i));
                $command .= " -geometry x$opt_y" if ($opt_y);
                $command .= " -geometry ".$opt_xy."x".$opt_xy if ($opt_xy);
                $command .= " \"$fullfile\" \"$fullthumb\"";
                system("$command");
-               print ".";
+           }
+           print ".";
        }
 }
 print " done!\n";

-- System Information
Debian Release: 3.0
Kernel Version: Linux vanzandt 2.4.19 #2 Wed Sep 4 21:33:27 EDT 2002 i686 
unknown

Versions of the packages igal depends on:
ii  imagemagick    5.4.4.5-1      Image manipulation programs.
ii  perl           5.6.1-7        Larry Wall's Practical Extraction and Report


--- End Message ---
--- Begin Message ---
Version: 1.4-21+rm

The igal package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.

For more information about this package's removal, read
http://bugs.debian.org/509534 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues
http://Marco.Tondela.org


--- End Message ---

Reply via email to