Convert Raw Bayer data to.dng file.

The data from my cameras is metadata, which means it only has RGGB information without any other head information like ISO etc. So how can I convert this format to DNG with LibRaw?

Forums: 

LibRaw only reads files, not

LibRaw only reads files, not writes.

DNG format is TIFF format + some additional tags.
So your options are:
- Adobe DNG SDK
- libtiff (you'll need to add tags using libtiff calls)
- plain write w/o addional libraries.

-- Alex Tutubalin @LibRaw LLC