I wish to use the JPEG writer rather than the attribute file writer, because I want to add EXIF data to the image that doesn't exist in the original BLOB. I do not see a way to add this EXIF information when simply using an attribute File Writer.
Page 1 / 1
Hi @bellrosemike ,
Instead of using the AttributeFileWriter, try the RasterReplacer and connect it to a JPEG writer. The RasterReplacer decodes a binary attribute containing encoded rasters stored as Blobs, replacing the feature’s geometry with the decoded raster.
Thank you Chris, that method worked perfectly. I didn't even know that the RasterReplacer transformer existed, but it did exactly what I needed.