Your message dated Thu, 14 Jul 2005 18:54:29 +0900 (JST)
with message-id <[EMAIL PROTECTED]>
and subject line (no subject)
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 8 Sep 2004 01:22:34 +0000
>From [EMAIL PROTECTED] Tue Sep 07 18:22:34 2004
Return-path: <[EMAIL PROTECTED]>
Received: from pcp04612309pcs.gambrl01.md.comcast.net (neokiwi.ghostlords.com) 
[68.48.173.106] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1C4rAQ-00036X-00; Tue, 07 Sep 2004 18:22:34 -0700
Received: from jonathan by neokiwi.ghostlords.com with local (Exim 4.34)
        id 1C4rAO-00085v-O3; Tue, 07 Sep 2004 21:22:32 -0400
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Jonathan <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: perlmagick: Composite() does not generate transparency
X-Mailer: reportbug 2.64
Date: Tue, 07 Sep 2004 21:22:32 -0400
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: perlmagick
Version: 5:6.0.7.1-1
Severity: normal

At some point in an upgrade to my testing box a perl script which used
to composite a translucent box onto an image started placing a solid
black one there instead.  A stripped down version is included at the
end of this message.  It produces the black box on both my testing and
unstable machines.

I believe the script stopped working when perlmagick switched from using
libmagick 5.5 to 6.  I have not contructed a test C program, although I
can if it is deemed neccesary.

This is the minimal version of the script:

-----

#!/usr/bin/perl

use strict;
use Image::Magick;

# read input image
my $image=Image::Magick->new();
$image->Read("in.png");

#composite the label onto the image trabslucently
#$cover is the image to put on top
my $cover=Image::Magick->new(size=>"150x40");
$cover->Read("xc:black");
#$mask is how translucent.  Must be greyscale.
my $mask=Image::Magick->new(size=>"150x40");
$mask->Read("xc:#888888");
$image->Composite(image=>$cover,compose=>"Over",mask=>$mask,gravity=>"SouthEast");

# save the image
$image->Write(filename=>"out.jpg");

----

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8

Versions of packages perlmagick depends on:
ii  libmagick6                   5:6.0.7.1-1 Image manipulation library
ii  perl                         5.8.4-2.2   Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.4]    5.8.4-2.2   The Pathologically Eclectic Rubbis

-- no debconf information

---------------------------------------
Received: (at 270565-close) by bugs.debian.org; 14 Jul 2005 09:55:00 +0000
>From [EMAIL PROTECTED] Thu Jul 14 02:55:00 2005
Return-path: <[EMAIL PROTECTED]>
Received: from (arafune2.sendai.riken.go.jp) [134.160.214.108] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Dt0Qm-00008y-00; Thu, 14 Jul 2005 02:55:00 -0700
Received: from [127.0.0.1] (helo=localhost)
        by arafune2.sendai.riken.go.jp with esmtp (Exim 4.52)
        id 1Dt0QH-0005Gq-BX; Thu, 14 Jul 2005 18:54:29 +0900
Date: Thu, 14 Jul 2005 18:54:29 +0900 (JST)
Message-Id: <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED]
From: Ryuichi Arafune <[EMAIL PROTECTED]>
X-Mailer: Mew version 4.2 on Emacs 21.4 / Mule 5.0 (SAKAKI)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-1.5 required=4.0 tests=BAYES_00,NOSUBJECT 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 
X-CrossAssassin-Score: 3

This bug is fixed in the current version.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to