Thanks so much for the response. That was exactly what I was looking for and am now able to render the image in a PDF. The reason, I opted to go with UIWebView and then export the HTML to PDF is that this way I get to leverage the formatting and table and image rendering in already present in UIWebView.
All this time I have been looking at the documentation at
http://developer.couchbase.com/mobile/develop/references/couchbase-lite/index.html and it doesn't mention the existence of the CBLDatabase.internalUrl property.
For others looking for a similar solution, I ended up doing the following (in Swift)
let dbUrl = doc.database.internalURL
let url = dbUrl.absoluteString?.stringByAppendingPathComponent(doc.documentID).stringByAppendingPathComponent(imageFileName)
Thanks again!!
S