Editor / visualizador de PDF para Linux / Windows com opções de posicionamento de elemento

1

Existe algum editor / visualizador de PDF para Linux ou Windows que possa me mostrar uma posição do elemento selecionado e o tamanho do documento em polegadas?

    
por Daniel 06.03.2013 / 10:57

1 resposta

0

Eu encontrei uma ferramenta de console escrita em Ruby chamada pdf-extract , que é capaz de mostrar regiões de texto e tamanho do documento em pixels. Não tenho certeza se funcionará para o Windows, mas no Linux funciona muito bem (exceto que sua dependência da versão 1.1.1 do pdf reader deve ser instalada, versão superior não funciona).

Exemplo de uso:

pdf-extract extract --regions file.pdf

Exemplo de saída:

<?xml version="1.0"?>
<pdf>
  <page width="612" height="792" number="1">
    <region x="40.73" y="682.68" width="62.53" height="4.47" line_height="4.47" font="CHRUEN+MetaPlusMedium-Roman">
      <line x_offset="0.0" y_offset="0.0" spacing="0.0">xxxx</line>
    </region>
    <region x="41.65" y="669.18" width="60.69" height="4.47" line_height="4.47" font="CHRUEN+MetaPlusMedium-Roman">
      <line x_offset="0.0" y_offset="0.0" spacing="0.0">xxxx</line>
    </region>
    <region x="40.81" y="655.68" width="62.38" height="4.47" line_height="4.47" font="CHRUEN+MetaPlusMedium-Roman">
      <line x_offset="0.0" y_offset="0.0" spacing="0.0">xxxx</line>
    </region>
    <region x="19.48" y="640.69" width="5.86" height="5.9" line_height="5.9" font="XBCKNX+AGaramond-Italic">
      <line x_offset="0.0" y_offset="0.0" spacing="0.0">xxx</line>
    </region>
    <region x="27.44" y="640.69" width="97.07" height="5.96" line_height="4.47" font="CHRUEN+MetaPlusMedium-Roman">
      <line x_offset="0.0" y_offset="1.49" spacing="0.0">xxx</line>
      <line x_offset="44.96" y_offset="0.0" spacing="-4.42">xxx</line>
    </region>
    <region x="43.18" y="628.68" width="57.64" height="4.47" line_height="4.47" font="CHRUEN+MetaPlusMedium-Roman">
      <line x_offset="0.0" y_offset="0.0" spacing="0.0">xxxx</line>
    </region>
  </page>
</pdf>

Onde "xxx" é o texto real

    
por 08.03.2013 / 21:43