[
https://issues.apache.org/jira/browse/SANSELAN-67?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13231902#comment-13231902
]
Damjan Jovanovic commented on SANSELAN-67:
------------------------------------------
This should work in 1.0, with BMP, PCX, PNG, and TIFF:
{code}
Map params = new HashMap();
params.put(SanselanConstants.PARAM_KEY_PIXEL_DENSITY,
PixelDensity.createFromPixelsPerCentimetre(300, 300));
Sanselan.writeImage(image, outImgFile, format, params);
{code}
> Possibility to set DPI for PNG
> ------------------------------
>
> Key: SANSELAN-67
> URL: https://issues.apache.org/jira/browse/SANSELAN-67
> Project: Commons Sanselan
> Issue Type: Improvement
> Components: Format: PNG
> Affects Versions: 0.97, 1.0, 1.1, 1.x
> Environment: Any
> Reporter: VVD
> Fix For: 1.0
>
>
> How I can to set DPI for PNG image?
> {code}
> File inImgFile = new File("in.png");
> File outImgFile = new File("out.png");
> BufferedImage image = Sanselan.getBufferedImage(inImgFile);
> // ImageInfo imageinfo = Sanselan.getImageInfo(inImgFile);
> // imageinfo.getPhysicalHeightDpi(): returned 300
> // imageinfo.getPhysicalWidthDpi(): returned 300
> // Sanselan.getMetadata(inImgFile): returned null
> ImageFormat format = ImageFormat.IMAGE_FORMAT_PNG;
> Sanselan.writeImage(image, outImgFile, format, params);
> // imageinfo = Sanselan.getImageInfo(outImgFile);
> // imageinfo.getPhysicalHeightDpi(): returned -1
> // imageinfo.getPhysicalWidthDpi(): returned -1
> {code}
> Thanks.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira