Different Behavior Between The Same Code In Java Application & Smart Service

Hi All,

I've created a smart service that takes as input a document - image - of type jpg, png, tiff and converts the image to another of the other previously listed formats.

My standalone Java application - that the smart service is based on - successfully converts any format to any other format.

My smart service produces the following outputs:

- jpg => png - Success
- png => jpg - Success
- tiff => png - Failure
- tiff => jpg Failure

To do this conversion I'm using the library JAI ImageIO Core - github.com/.../jai-imageio-core.

I've figured out where in the smart service this fails on .tiff images but not other forms; I just have no idea why.

In both the standalone application and my smart service, the buffered image is created like follows:

BufferedImage bufferedImage = ImageIO.read(imageFile);

Where imageFile is a variable of type File. The onl...

OriginalPostID-261516

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data