Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 45541 invoked from network); 26 Mar 2010 02:31:52 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Mar 2010 02:31:52 -0000 Received: (qmail 26041 invoked by uid 500); 26 Mar 2010 02:31:52 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 25941 invoked by uid 500); 26 Mar 2010 02:31:51 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 25934 invoked by uid 99); 26 Mar 2010 02:31:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Mar 2010 02:31:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Mar 2010 02:31:48 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 53A56234C4E9 for ; Fri, 26 Mar 2010 02:31:27 +0000 (UTC) Message-ID: <144011793.502111269570687341.JavaMail.jira@brutus.apache.org> Date: Fri, 26 Mar 2010 02:31:27 +0000 (UTC) From: "Lang Yang (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-6482) Implementation of getImageWriter, getImageReader In-Reply-To: <895957810.500561269562227672.JavaMail.jira@brutus.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-6482?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lang Yang updated HARMONY-6482: ------------------------------- Attachment: HARMONY-6482-yanglang.txt > Implementation of getImageWriter, getImageReader > ------------------------------------------------ > > Key: HARMONY-6482 > URL: https://issues.apache.org/jira/browse/HARMONY-6482 > Project: Harmony > Issue Type: Sub-task > Components: Classlib > Reporter: Lang Yang > Attachments: HARMONY-6482-yanglang.txt > > > I have implemented these methods > javax.imageio.ImageIO.getImageReader() > javax.imageio.ImageIO.getImageWriter() > javax.imageio.spi.ImageReaderSpi.getImageWriterSpiNames() > I only used the following Reader/Writer to test (Since they are the only available ones): > ImageIO.getImageWriter(new JPEGImageReader(new JPEGImageReaderSpi())); > ImageIO.getImageReader(new JPEGImageWriter(new JPEGImageWriterSpi())); > ImageIO.getImageWriter(new PNGImageReader(new PNGImageReaderSpi())); > Results: > org.apache.harmony.x.imageio.plugins.jpeg.JPEGImageWriter@4c4feb1 > org.apache.harmony.x.imageio.plugins.jpeg.JPEGImageReader@4c50594 > org.apache.harmony.x.imageio.plugins.png.PNGImageWriter@4c50e6e > These are the SUN's result: > com.sun.imageio.plugins.jpeg.JPEGImageWriter@b1c260 > com.sun.imageio.plugins.jpeg.JPEGImageReader@100ab23 > com.sun.imageio.plugins.png.PNGImageWriter@1bd0dd4 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.