<?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 ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1004391#M34518</link>
    <description>&lt;P&gt;ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, in the screenshot below, the related table contains 6 photos. Then how these photos can be displayed or downloaded from the related table? Where are they physically stored?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_405.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/896iB87DB1DBA81B5CA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_405.jpg" alt="Clip_405.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_406.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/897i9C045D8222FDB30A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_406.jpg" alt="Clip_406.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Nov 2020 19:49:11 GMT</pubDate>
    <dc:creator>JamalNUMAN</dc:creator>
    <dc:date>2020-11-24T19:49:11Z</dc:date>
    <item>
      <title>ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1004391#M34518</link>
      <description>&lt;P&gt;ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, in the screenshot below, the related table contains 6 photos. Then how these photos can be displayed or downloaded from the related table? Where are they physically stored?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_405.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/896iB87DB1DBA81B5CA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_405.jpg" alt="Clip_405.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_406.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/897i9C045D8222FDB30A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_406.jpg" alt="Clip_406.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2020 19:49:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1004391#M34518</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-11-24T19:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1004551#M34528</link>
      <description>&lt;P&gt;You have a DATA field which contains Blobs, so given this help topic entry&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/arcpy/get-started/data-access-using-cursors.htm" target="_blank"&gt;Accessing data using cursors—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can use arcpy, as per the code examples.&lt;/P&gt;&lt;PRE&gt;import arcpy&lt;BR /&gt;sc = arcpy.da.SearchCursor("c:/data/fgdb.gdb/fc", ["imageblob"])&lt;BR /&gt;memview = sc.next()[0]&lt;BR /&gt;open("c:/images/image1_copy.png", "wb").write(memview.tobytes())&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Nov 2020 02:04:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1004551#M34528</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-11-25T02:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1005031#M34575</link>
      <description>&lt;P&gt;Hi Jamal,&lt;/P&gt;&lt;P&gt;Here are some other links that might be useful (for interacting with attachments without code):&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add/replace attachment images for a feature (via editing):&lt;BR /&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/help/editing/edit-file-attachments.htm#GUID-DBB2786B-5674-4447-910E-DD7B5A187AAC" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/help/editing/edit-file-attachments.htm#GUID-DBB2786B-5674-4447-910E-DD7B5A187AAC&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Display attachment images in Pop-Ups:&lt;BR /&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/help/mapping/navigation/pop-ups.htm#ESRI_SECTION1_7D5DF79AC9CD407F947BE4FAB7F18E8E" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/help/mapping/navigation/pop-ups.htm#ESRI_SECTION1_7D5DF79AC9CD407F947BE4FAB7F18E8E&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Include attachment images in Reports:&lt;BR /&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/help/reports/attachment-report-elements.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/help/reports/attachment-report-elements.htm&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;-Nathan.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 14:56:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1005031#M34575</guid>
      <dc:creator>NathanShephard</dc:creator>
      <dc:date>2020-11-26T14:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041279#M39035</link>
      <description>&lt;P&gt;Thank you guys for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code below appears not to work as per the screenshot below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;sc = arcpy.da.SearchCursor("D:\Q.gdb/T1", ["imageblob"])&lt;/P&gt;&lt;P&gt;memview = sc.next()[0]&lt;/P&gt;&lt;P&gt;open("D:\Q_Images/image1_copy.png", "wb").write(memview.tobytes())&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_644.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9512iD14C229433C2F9A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_644.jpg" alt="Clip_644.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Mar 2021 08:26:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041279#M39035</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2021-03-27T08:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041571#M39065</link>
      <description>&lt;P&gt;Hi Jamal,&lt;/P&gt;&lt;P&gt;It looks like your file paths are inconsistent with Python formatting. Try this (uses forward slashes only):&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;sc = arcpy.da.SearchCursor("D:&lt;STRONG&gt;/&lt;/STRONG&gt;Q.gdb/T1", ["imageblob"])&lt;/P&gt;&lt;P&gt;memview = sc.next()[0]&lt;/P&gt;&lt;P&gt;open("D:&lt;STRONG&gt;/&lt;/STRONG&gt;Q_Images/image1_copy.png", "wb").write(memview.tobytes())&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Alycia&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 15:32:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041571#M39065</guid>
      <dc:creator>AlyciaRajendran_esri</dc:creator>
      <dc:date>2021-03-29T15:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041723#M39075</link>
      <description>&lt;P&gt;Thank you Alycia for the help.&lt;/P&gt;&lt;P&gt;The error persists to exist as per the screenshot below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_652.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9603iE0BBBB1858D56A62/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_652.jpg" alt="Clip_652.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 20:35:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041723#M39075</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2021-03-29T20:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041978#M39095</link>
      <description>&lt;P&gt;Jamal,&lt;/P&gt;&lt;P&gt;The error indicates that there is no "imageblob" field in your T1 feature class. If that field name does exist, I suggest contacting technical support; they can assist you better.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;- Alycia&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 15:46:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1041978#M39095</guid>
      <dc:creator>AlyciaRajendran_esri</dc:creator>
      <dc:date>2021-03-30T15:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.6.2: How to display the physical photos saved on the related table that is created as the “enable attachments” option is performed?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1045412#M39505</link>
      <description>&lt;P&gt;The name of the blob field is “data” but not “imageblob” as per the screenshot below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code manages to extract one of the photos! Why does it fail to extract all of them?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_674.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/10490iD921D4EEDBB8DADB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_674.jpg" alt="Clip_674.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Clip_675.jpg" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/10489i31F93A51F2187D4F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Clip_675.jpg" alt="Clip_675.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 13:05:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-6-2-how-to-display-the-physical/m-p/1045412#M39505</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2021-04-09T13:05:27Z</dc:date>
    </item>
  </channel>
</rss>

