You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sanselan-dev@incubator.apache.org by "Dirk Daems (JIRA)" <ji...@apache.org> on 2008/07/15 18:17:31 UTC

[jira] Updated: (SANSELAN-5) Can't convert PNG image to GIF image

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

Dirk Daems updated SANSELAN-5:
------------------------------

    Attachment: 12118.png

This is one of the PNG images that I can't seem to convert using Sanselan.

> Can't convert PNG image to GIF image
> ------------------------------------
>
>                 Key: SANSELAN-5
>                 URL: https://issues.apache.org/jira/browse/SANSELAN-5
>             Project: Sanselan
>          Issue Type: Bug
>         Environment: Windows XP SP2, Eclipse IDE, Custom Java database conversion program, JRE 1.5.x
>            Reporter: Dirk Daems
>            Assignee: Carsten Ziegeler
>            Priority: Blocker
>         Attachments: 12118.png
>
>
> I want to transform a set of PNG images to GIF images.
>  
> The code I tried:
> private static void convertImage(String sourceDir, String sourceFile, String targetDir){
>   try{
>  
>    BufferedImage source = Sanselan.getBufferedImage(new File(sourceDir + File.separator + sourceFile));
>    String targetFile = sourceFile.substring(0, sourceFile.indexOf('.')) + ".gif";
>    Hashtable parms = new Hashtable();
>    // parms.put(SanselanConstants.PARAM_KEY_VERBOSE, Boolean.TRUE);
>    Sanselan.writeImage(source, new File(targetDir + File.separator + targetFile), ImageFormat.IMAGE_FORMAT_GIF, parms);
>  
>   }
>   catch(Exception ex){
>    ex.printStackTrace();
>   }
>  
>  }
>  
> I don't get any errors but the image that's generated cannot be displayed and is way too small (2kb).

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