<?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: Extract Images from PDF in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/123786#M4573</link>
    <description>&lt;P&gt;You can install Poppler pdfimages.exe application and in blueprism using Environment object use start process and specify pdfimages.exe and output folder path and provide below cmd code&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;pdfimages -all yourfile.pdf outputpath&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Dec 2025 17:51:47 GMT</pubDate>
    <dc:creator>naveed_raza</dc:creator>
    <dc:date>2025-12-04T17:51:47Z</dc:date>
    <item>
      <title>Extract Images from PDF</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/109673#M3468</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is there any VBO available to extract images from PDF files.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Maheshwar&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 15:53:02 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/109673#M3468</guid>
      <dc:creator>MareddyMahesh</dc:creator>
      <dc:date>2024-04-18T15:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Images from PDF</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/109674#M3469</link>
      <description>&lt;P&gt;Hi Maheshwar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can check "Connector for Blue Prism - Adobe PDF Services - API - 2.0.0" asset from digital exchange.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/blue-prism---adobe-pdf-services---export" target="_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/blue-prism---adobe-pdf-services---export&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 17:22:19 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/109674#M3469</guid>
      <dc:creator>harish.mogulluri</dc:creator>
      <dc:date>2024-04-18T17:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Images from PDF</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/109689#M3470</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi Harish,&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;Unfortunately, the connector requires the creation of a paid account in Adobe PDF Services, which isn't suitable for my current needs.&lt;/P&gt;&lt;P&gt;I'm searching for a simpler utility similar to those available in Power Automate and Ui Path.&lt;/P&gt;&lt;P&gt;My Business case is to extract images in a Text PDF and store images in required folder.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 07:42:10 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/109689#M3470</guid>
      <dc:creator>MareddyMahesh</dc:creator>
      <dc:date>2024-04-19T07:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Images from PDF</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/123786#M4573</link>
      <description>&lt;P&gt;You can install Poppler pdfimages.exe application and in blueprism using Environment object use start process and specify pdfimages.exe and output folder path and provide below cmd code&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;pdfimages -all yourfile.pdf outputpath&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Dec 2025 17:51:47 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/123786#M4573</guid>
      <dc:creator>naveed_raza</dc:creator>
      <dc:date>2025-12-04T17:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Images from PDF</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/123787#M4574</link>
      <description>&lt;P&gt;there is another way of doing this is , using python code. you have to install python software and pypdf library , save the file with .py extension and run this python file using Environment object - start process&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from pypdf import PdfReader
import os

pdf_path = r"C:\yourpath\testPDFImage\image-doc.pdf"
output_folder = r"C:\yourpath\outputimage"

os.makedirs(output_folder, exist_ok=True)

reader = PdfReader(pdf_path)

img_count = 1
for page_num, page in enumerate(reader.pages):
 
    
 if "/XObject" in page["/Resources"]:
  
    xObject = page["/Resources"]["/XObject"].get_object()
    for obj in xObject:
        if xObject[obj]["/Subtype"] == "/Image":
            data = xObject[obj].get_data()
            file_name = f"image_{page_num+1}_{img_count}.png"
            with open(os.path.join(output_folder, file_name), "wb") as f: f.write(data)

 img_count += 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Dec 2025 18:36:21 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Extract-Images-from-PDF/m-p/123787#M4574</guid>
      <dc:creator>naveed_raza</dc:creator>
      <dc:date>2025-12-04T18:36:21Z</dc:date>
    </item>
  </channel>
</rss>

