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.
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.
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.
Great tip. Still Valid. Great way to deal with the _response_body of an HTTPCaller when the API returns an imageblob.
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.
Great solution