A PostgreSQL database

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
mysterio152
Posts: 1
Joined: 2019-08-26T21:31:25-07:00
Authentication code: 1152

A PostgreSQL database

Post by mysterio152 »

Hi all,
Curious as to how the stream and convert functionality may be used to potentially convert a bunch of BMP files sitting in a blob storage on GCP into TIFF files in a new storage location as part of a VM (also in GCP). There is a PostgreSQL database that contains the metadata for the BMP images that will later be embedded into the converted TIFF files, but wondering if/how the stream and convert functionality in IM may allow this to happen. It seems like a great way to not have to copy the BMP to the new storage location, perform the conversion and then dump the BMP (reducing bandwith cost ideally). Is this a feasible/best approach?

Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: A PostgreSQL database

Post by fmw42 »

ImageMagick does not interface with database software. It can do the conversion, but you have to do the file system operations to your database.
Post Reply