# @author: Simon Bowie # @purpose: Display images from OPS API image service # @acknowledgements: # OPS documented at https://www.epo.org/searching-for-patents/data/web-services/ops.html # OPS RESTful API specification at http://documents.epo.org/projects/babylon/eponet.nsf/0/F3ECDCC915C9BCD8C1258060003AA712/$File/ops_v3.2_documentation_-_version_1.3.16_en.pdf # OPS API functions list at https://developers.epo.org/ops-v3-2/apis include '../ops_api.php'; if(isset($_GET["doc_ref"])){ $image_output = get_images($_GET["doc_ref"]); //Display the image in the browser header('Content-type: application/pdf'); echo $image_output; } ?>