You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Markus Plesser (JIRA)" <ji...@apache.org> on 2009/09/10 15:50:57 UTC

[jira] Updated: (SANSELAN-28) Expose ImageInfo's usesPalette, isTransparent, isProgressive and compressionAlgorithm

     [ https://issues.apache.org/jira/browse/SANSELAN-28?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Markus Plesser updated SANSELAN-28:
-----------------------------------

    Description: 
We use Sanselan (with great success!) to extract image information in our content repository [fleXive] [1].
For now we have to package our own modified sanselan implementation since we have to rely on 4 properties of ImageInfo that currently are not public: usesPalette, isTransparent, isProgressive and compressionAlgorithm.

Could you possibly add the following getters to the ImageInfo class:

    public boolean isUsesPalette() {
        return usesPalette;
    }

    public boolean isTransparent() {
        return isTransparent;
    }

    public boolean isProgressive() {
        return isProgressive;
    }

    public String getCompressionAlgorithm() {
        return compressionAlgorithm;
    }


Cheers and keep up the good work,
Markus

[1] http://www.flexive.org

  was:
We use Sanselan (with great success!) to extract image information in our content repository [fleXive] (www.flexive.org).
For now we have to package our own modified sanselan implementation since we have to rely on 4 properties of ImageInfo that currently are not public: usesPalette, isTransparent, isProgressive and compressionAlgorithm.

Could you possibly add the following getters to the ImageInfo class:

    public boolean isUsesPalette() {
        return usesPalette;
    }

    public boolean isTransparent() {
        return isTransparent;
    }

    public boolean isProgressive() {
        return isProgressive;
    }

    public String getCompressionAlgorithm() {
        return compressionAlgorithm;
    }


Cheers and keep up the good work,
Markus


> Expose ImageInfo's usesPalette, isTransparent, isProgressive and compressionAlgorithm
> -------------------------------------------------------------------------------------
>
>                 Key: SANSELAN-28
>                 URL: https://issues.apache.org/jira/browse/SANSELAN-28
>             Project: Commons Sanselan
>          Issue Type: Improvement
>    Affects Versions: 0.94-incubator
>            Reporter: Markus Plesser
>
> We use Sanselan (with great success!) to extract image information in our content repository [fleXive] [1].
> For now we have to package our own modified sanselan implementation since we have to rely on 4 properties of ImageInfo that currently are not public: usesPalette, isTransparent, isProgressive and compressionAlgorithm.
> Could you possibly add the following getters to the ImageInfo class:
>     public boolean isUsesPalette() {
>         return usesPalette;
>     }
>     public boolean isTransparent() {
>         return isTransparent;
>     }
>     public boolean isProgressive() {
>         return isProgressive;
>     }
>     public String getCompressionAlgorithm() {
>         return compressionAlgorithm;
>     }
> Cheers and keep up the good work,
> Markus
> [1] http://www.flexive.org

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.