I have a base64 encoded pdf database URI.
eg:
return <object data="data:application/pdf;base64,JVBERi0xLjMKJf////8KOCAwIG9...VmCjI0MTU4OAolJUVPRgo=" type="application/pdf"></object>
I can embed it in a page without any problems. However, by default, browsers include a toolbar in PDF format.

It seems that the only way to disable this toolbar is to include some hash options at the end of the URL.
eg.
<object data="path/to/file.pdf#toolbar=0&navpanes=0&scrollbar=0" type="application/pdf"></object>
Which works fine if the PDF is accessed via a relative path or URL, but I cannot find a way to do this work with the data URI.
Can these hash parameters be included at the end of the URI?
Or does anyone know some way to hide this toolbar in another way?
Any help is appreciated. Thanks in advance.:)