A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ops_image.php 460B

3 anos atrás
12345678910111213141516171819202122
  1. <?php
  2. # @name: ops_image.php
  3. # @version: 0.1
  4. # @creation_date: 2021-09-24
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Display images from OPS API image service
  8. include '../ops_api.php';
  9. if(isset($_GET["doc_ref"])){
  10. $image_output = get_images($_GET["doc_ref"]);
  11. //Display the image in the browser
  12. header('Content-type: application/pdf');
  13. echo $image_output;
  14. }
  15. ?>