<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: Lectura de PDF in Comunidad Blue Prism en español</title>
    <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48200#M288</link>
    <description>&lt;P&gt;iTextSharp es una DLL gratuita. El tema es que tenés que desarrollar vos el objeto introduciendo código de .NET&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Decipher creo que no tiene costo adicional, pero requiere toda una infraestructura para usarlo (incluso la última versión del SQL server) y además utiliza el Runtime Resource al completo. No es que se trate de un objeto que puedas utilizar dentro de tu proceso, sino que tenés que hacer un proceso de extracción de datos y luego utilizar esa salida en tu proceso.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Aníbal Facundo Urrestarazu&lt;BR /&gt;Lead Developer&lt;BR /&gt;Ctrl365 - Argentina&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 18 Dec 2020 14:21:00 GMT</pubDate>
    <dc:creator>Aníbal_FacundoU</dc:creator>
    <dc:date>2020-12-18T14:21:00Z</dc:date>
    <item>
      <title>Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48196#M284</link>
      <description>&lt;P&gt;Hola a todos, necesito leer PDFs para obtener su información... tengo instalada la versión Blue Prism 6.7.2, ¿Habrá algún componente que me pueda ayudar?&lt;/P&gt;
&lt;P&gt;gracias...&lt;/P&gt;
&lt;P&gt;Saludos!&lt;/P&gt;
&lt;P&gt;​&lt;/P&gt;
&lt;P&gt;​&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SAMUEL PIZANO&lt;BR /&gt;CONSULTOR TI&lt;BR /&gt;MABE&lt;BR /&gt;America/Mexico_City&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Dec 2020 00:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48196#M284</guid>
      <dc:creator>SPGMEXTI</dc:creator>
      <dc:date>2020-12-18T00:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48197#M285</link>
      <description>&lt;P&gt;Hola Samuel!&lt;/P&gt;
&lt;P&gt;Podés llegar a generar un objeto que haga esa lectura. Te recomiendo utilizar las DLL de Spide.PDF.&lt;/P&gt;
&lt;P&gt;El código para poner en el objeto es simple (a modo ejemplo, la vas a tener que poner en parámetros a las rutas de origen y destino)&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;PdfDocument pdf = new PdfDocument();
pdf.LoadFromFile(@"C:\000\origen.pdf");
pdf.SaveToFile(@"c:\000\salida.xlsx", FileFormat.XLSX);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Otra posibilidad es utilizar la DLL &lt;STRONG&gt;itextsharp o PDFBox&lt;/STRONG&gt;, pero esta solamente te deja extraer el contenido como texto:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Con PDFBox sería algo así:&lt;/P&gt;
&lt;P&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;PDFParser pdfParser = new PDFParser();
   
String result = pdfParser.ExtractText(pdfFile);&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Aníbal Facundo Urrestarazu&lt;BR /&gt;Lead Developer&lt;BR /&gt;Ctrl365 - Argentina&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 13:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48197#M285</guid>
      <dc:creator>Aníbal_FacundoU</dc:creator>
      <dc:date>2020-12-18T13:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48198#M286</link>
      <description>&lt;P&gt;Hola Samuel&lt;/P&gt;
&lt;P&gt;Primero que todo revisaste las opciones que tiene el Digital Exchange? &lt;A href="https://digitalexchange.blueprism.com/dx/search?keyword=pdf&amp;amp;sortOrder=lastApprovalDate_desc&amp;amp;page=1" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/search?keyword=pdf&amp;amp;sortOrder=lastApprovalDate_desc&amp;amp;page=1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Otra opción es hacer una utilidad a la medida para la lectura de PDF, si tienes acceso a itextsharp por ejemplo puedes implementar el código en un objeto, aquí te dejo un ejemplo en c# para esta librería.&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;PdfReader reader = new PdfReader(InputFile);

string text = string.Empty;

for(int page = 1; page &amp;lt;= reader.NumberOfPages; page++) {
	text += PdfTextExtractor.GetTextFromPage(reader,page);
}

reader.Close();

OutText = text;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Saludos&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jose Gleiser&lt;BR /&gt;Head of Automation CoE&lt;BR /&gt;BCI&lt;BR /&gt;America/Santiago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Dec 2020 13:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48198#M286</guid>
      <dc:creator>JoseGleiser</dc:creator>
      <dc:date>2020-12-18T13:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48199#M287</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;Hola Jose Gleiser,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;Gracias, aún no reviso la parte de DX o si tengo acceso a &lt;/SPAN&gt;&lt;SPAN lang="es-419" style="font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;itextsharp, revisaré sobre lo que me compartes&lt;/SPAN&gt;&lt;SPAN lang="es-419"&gt;... estamos comenzando a revisar opciones... he leído algo sobe Decipher pero no se si tiene un costo adicional.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;Saludos!&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt; &lt;BR /&gt; &lt;HR /&gt; &lt;FONT face="Arial" color="Gray" size="1"&gt;&lt;BR /&gt; AVISO DE CONFIDENCIALIDAD Y ALCANCE DE CONTENIDO&lt;BR /&gt; Este correo es para el uso exclusivo del destinatario (s) y puede contener información confidencial y/o privilegiada. Si usted no es el destinatario original, no debe abrir, usar, publicar, distribuir, copiar o usar como base este mensaje o archivo adjunto.  Cualquier revisión, retransmisión, diseminación, o cualquier otro uso o acción relacionada con esta información ya sea por personas o entidades distintas a los recipientes a los que ha sido dirigida, esta prohibida. Si usted ha recibido este e-mail por error,  favor de destruir inmediatamente todas las copias del mensaje original y notifique al remitente.&lt;BR /&gt; Mabe no acepta responsabilidad por cualquier error, omisión, corrupción o virus en el contenido de este mensaje o cualquier archivo adjunto.&lt;BR /&gt; &lt;BR /&gt; CONFIDENTIAL AND DISCLAIMER NOTICES&lt;BR /&gt; This e-mail message is exclusively for the destinatary, may contain privileged or confidential information. If you are not the intended recipient, you may not disclose, use, disseminate, distribute, copy or rely upon this message or attachment in any way. If  you received this e-mail message in error, please destroy it immediately and return by forwarding the message and its attachments to the sender.&lt;BR /&gt; Mabe and its affiliates do not accept liability for any errors, omissions, corruption or virus in the contents of this message or any attachments.&lt;BR /&gt; &lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Dec 2020 13:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48199#M287</guid>
      <dc:creator>SPGMEXTI</dc:creator>
      <dc:date>2020-12-18T13:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48200#M288</link>
      <description>&lt;P&gt;iTextSharp es una DLL gratuita. El tema es que tenés que desarrollar vos el objeto introduciendo código de .NET&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Decipher creo que no tiene costo adicional, pero requiere toda una infraestructura para usarlo (incluso la última versión del SQL server) y además utiliza el Runtime Resource al completo. No es que se trate de un objeto que puedas utilizar dentro de tu proceso, sino que tenés que hacer un proceso de extracción de datos y luego utilizar esa salida en tu proceso.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Aníbal Facundo Urrestarazu&lt;BR /&gt;Lead Developer&lt;BR /&gt;Ctrl365 - Argentina&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Dec 2020 14:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48200#M288</guid>
      <dc:creator>Aníbal_FacundoU</dc:creator>
      <dc:date>2020-12-18T14:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48201#M289</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;Gracias Anibal, revisare las diferentes opciones, entre ellas la opción de &lt;/SPAN&gt;&lt;SPAN style="font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;iTextSharp, en mi caso no tendría problema con la parte de .NET&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="font-family:&amp;quot;Arial&amp;quot;,sans-serif"&gt;Saludos!&lt;/SPAN&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Dec 2020 16:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48201#M289</guid>
      <dc:creator>SPGMEXTI</dc:creator>
      <dc:date>2020-12-18T16:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48202#M290</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;Gracias Anibal y todos, revisará todas las DLLs para ver cual me funciona mejor...&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif"&gt;&lt;SPAN lang="es-419"&gt;Saludos!&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt; &lt;BR /&gt; &lt;HR /&gt; &lt;FONT face="Arial" color="Gray" size="1"&gt;&lt;BR /&gt; AVISO DE CONFIDENCIALIDAD Y ALCANCE DE CONTENIDO&lt;BR /&gt; Este correo es para el uso exclusivo del destinatario (s) y puede contener información confidencial y/o privilegiada. Si usted no es el destinatario original, no debe abrir, usar, publicar, distribuir, copiar o usar como base este mensaje o archivo adjunto.  Cualquier revisión, retransmisión, diseminación, o cualquier otro uso o acción relacionada con esta información ya sea por personas o entidades distintas a los recipientes a los que ha sido dirigida, esta prohibida. Si usted ha recibido este e-mail por error,  favor de destruir inmediatamente todas las copias del mensaje original y notifique al remitente.&lt;BR /&gt; Mabe no acepta responsabilidad por cualquier error, omisión, corrupción o virus en el contenido de este mensaje o cualquier archivo adjunto.&lt;BR /&gt; &lt;BR /&gt; CONFIDENTIAL AND DISCLAIMER NOTICES&lt;BR /&gt; This e-mail message is exclusively for the destinatary, may contain privileged or confidential information. If you are not the intended recipient, you may not disclose, use, disseminate, distribute, copy or rely upon this message or attachment in any way. If  you received this e-mail message in error, please destroy it immediately and return by forwarding the message and its attachments to the sender.&lt;BR /&gt; Mabe and its affiliates do not accept liability for any errors, omissions, corruption or virus in the contents of this message or any attachments.&lt;BR /&gt; &lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Dec 2020 18:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48202#M290</guid>
      <dc:creator>SPGMEXTI</dc:creator>
      <dc:date>2020-12-21T18:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48203#M291</link>
      <description>Llego algo tarde, pero según la documentación de Blueprism (es una de las preguntas de su examen de certificación profesional) la forma de extraer texto de un pdf haciendo uso de blueprism es a través de send keys.&lt;BR /&gt;&lt;BR /&gt;Primero hacer Control + A --&amp;gt; ^a&lt;BR /&gt;Después Copiar --&amp;gt; ^c&lt;BR /&gt;&lt;BR /&gt;y después a través de las propias actividades recuperar el texto del clipboard.&lt;BR /&gt;&lt;BR /&gt;Espero que te haya podido servir de ayuda para no tener que generar bloques de código.&lt;BR /&gt;&lt;BR /&gt;Un saludo.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jesús Miguel Bravo Díaz&lt;BR /&gt;RPA Developer&lt;BR /&gt;Atento&lt;BR /&gt;Europe/Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Feb 2021 10:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48203#M291</guid>
      <dc:creator>Jesús_MiguelBra</dc:creator>
      <dc:date>2021-02-11T10:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Lectura de PDF</title>
      <link>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48204#M292</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;Hola Jesús,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;De hecho finalmente esa fue la opción por la que nos fuimos y estamos construyendo la solución actualmente... gracias...&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN lang="es-419" style="color:windowtext"&gt;Saludos!&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Feb 2021 14:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Comunidad-Blue-Prism-en-espa%C3%B1ol/Lectura-de-PDF/m-p/48204#M292</guid>
      <dc:creator>SPGMEXTI</dc:creator>
      <dc:date>2021-02-11T14:14:00Z</dc:date>
    </item>
  </channel>
</rss>

