Harald Kuhr
Harald Kuhr
Hi, Had a similar issue. Solved it by wrapping the `LinearLayout` in a `FrameLayout` (keeping the margins on the `LinearLayout`. ## Harald K
Hi @jxtps, While certainly doable, it's not necessarily a goal to support as many formats as possible in the library. Any new plugin comes with a cost (for the maintainers,...
Hi Ashok, There seems to be two different issues here: 1: The image you are mentioning is a PNG file. It reads fine, using the standard JRE `PNGImageReader`. If you...
Hi Jani, It would help my understanding if you describe what the use case is here, ie. what will you use the merged metadata for. 😀 In any case, the...
@davidekholm I'm not able to reproduce the problem with the JPEG you provided. It does not seem to be a problem with the DHT node, and I don't find any...
One possible workaround: ```java try (ImageInputStream input = ImageIO.createImageInputStream(...)) { ImageReader reader = ImageIO.getImageReaders(input).next(); reader.setInput(input); IIOImage image = reader.readAll(0, null); IIOMetadataNode root = (IIOMetadataNode) image.getMetadata().getAsTree("javax_imageio_jpeg_image_1.0"); // Manipulate metadata from input...
No, it gives you a mutable JPEG metadata, so you can copy whatever you like (what this issue is about). --- Copying only Exif is (probably) possible, but tedious.. To...
Excellent! If we can only reliably support `SVGDocument` or `SVGOMDocument`, we should change the supported input type to that. The plugin does depend on Batik anyway, so I don't think...
Thanks! Okay, I won't merge directly without a test case, but I might look into it at some point. I any case, I don't think I like the serialize/deserialize-hack for...
Hi Sachin, Thanks for looking into this! If you are able to convert the above into code in a PR, I'd be happy to merge it! If not, I might...