<?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 Blank PNG export in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560968#M43908</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a successful script that was working great. I did some rearranging and polish on the map now I get no layers on my PNG except PNG. The Base Layer is there the text boxes update just fine. So I stopped the loop and the export and just ran it to the save and the map is updated just fine and when I open it in Arcmap everything is updated correctly. its only when i got to export via Python I get just a base layer, text boxes and pictures no layers. Has anyone ran into something similar or have any insight. &lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for step in hourdriver:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr2 in arcpy.mapping.ListLayers(mxd,"CR"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr2.definitionQuery = coronerquery+"".join(str(step))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print lyr2.definitionQuery # added for diag
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr in arcpy.mapping.ListLayers(mxd,"TA"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.definitionQuery = trafficquery+"".join(str(step))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print lyr.definitionQuery # added for diag
&amp;nbsp;&amp;nbsp;&amp;nbsp; for elm in arcpy.mapping.ListLayoutElements(mxd, "TEXT_ELEMENT"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if elm.name == "TIME_DESC":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Found it"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elm.text = timelist[step]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print elm.text
&amp;nbsp;&amp;nbsp;&amp;nbsp; filename = outputfolder+"".join(str(step))+""".png""" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; print filename
&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.save()
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPNG(mxd,filename)&lt;/PRE&gt;&lt;P&gt;Lyr and Lyr2 both update on the map and save but but do not show up in the PNG....&lt;/P&gt;&lt;P&gt;As i write this i was thinking that both layers are coming from the same SQL server could there be a hang up there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for your time. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 00:12:44 GMT</pubDate>
    <dc:creator>KendrickSchuett</dc:creator>
    <dc:date>2021-12-12T00:12:44Z</dc:date>
    <item>
      <title>Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560968#M43908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a successful script that was working great. I did some rearranging and polish on the map now I get no layers on my PNG except PNG. The Base Layer is there the text boxes update just fine. So I stopped the loop and the export and just ran it to the save and the map is updated just fine and when I open it in Arcmap everything is updated correctly. its only when i got to export via Python I get just a base layer, text boxes and pictures no layers. Has anyone ran into something similar or have any insight. &lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for step in hourdriver:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr2 in arcpy.mapping.ListLayers(mxd,"CR"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr2.definitionQuery = coronerquery+"".join(str(step))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print lyr2.definitionQuery # added for diag
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr in arcpy.mapping.ListLayers(mxd,"TA"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.definitionQuery = trafficquery+"".join(str(step))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print lyr.definitionQuery # added for diag
&amp;nbsp;&amp;nbsp;&amp;nbsp; for elm in arcpy.mapping.ListLayoutElements(mxd, "TEXT_ELEMENT"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if elm.name == "TIME_DESC":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Found it"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elm.text = timelist[step]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print elm.text
&amp;nbsp;&amp;nbsp;&amp;nbsp; filename = outputfolder+"".join(str(step))+""".png""" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; print filename
&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.save()
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPNG(mxd,filename)&lt;/PRE&gt;&lt;P&gt;Lyr and Lyr2 both update on the map and save but but do not show up in the PNG....&lt;/P&gt;&lt;P&gt;As i write this i was thinking that both layers are coming from the same SQL server could there be a hang up there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for your time. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:12:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560968#M43908</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2021-12-12T00:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560969#M43909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did, or can you try it local?&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 00:51:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560969#M43909</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-05-05T00:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560970#M43910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran the Py in Arcmap and it worked like a charm. Is my Arcpy module corrupted? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 15:22:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560970#M43910</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2015-05-05T15:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560971#M43911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;outside of arcmap... you have to import arcpy explicitly ie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;# more script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 15:23:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560971#M43911</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-05-05T15:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560972#M43912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I should have included my entire PY, I had arcpy in there and &lt;/P&gt;&lt;P&gt;Sorry i Don't know how to to add code brackets in replies like in the original question. &lt;/P&gt;&lt;P&gt;&amp;lt;python&amp;gt;&lt;/P&gt;&lt;P&gt;# This Project was developed as a tool to create 24 traffic accident maps for the lights for lives video completed Weekly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Import Modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from datetime import *; from dateutil.relativedelta import*&lt;/P&gt;&lt;P&gt;import arcpy, os, moviepy.editor as mpy&lt;/P&gt;&lt;P&gt;import numpy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Set Variables&lt;/P&gt;&lt;P&gt;mxdpath = r'MXD Location' # This is the path of the map that is the base for this Script&lt;/P&gt;&lt;P&gt;outputfolder = r"Output folder"+"".join(str(date.today()))+"\\" # This is the Output folder&lt;/P&gt;&lt;P&gt;hourdriver = range(1) # This Project creates 24 maps&lt;/P&gt;&lt;P&gt;trafficquery = "nature LIKE 'TA%' AND CallDate &amp;gt; GETDATE() - 90 AND Datepart(hh, CallDate) = "&amp;nbsp; #This sets the Query for the Traffic Accident(TA) Layer in the map&lt;/P&gt;&lt;P&gt;coronerquery = "nature = 'ZZ - CORACCIDEN ' AND factor = 'CLASS OF DEATH&amp;nbsp; ' AND method = 'MOTOR VEH CRASH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' AND Year (Occured ) = 2015 AND Datepart(hh, Occured ) = " #This Sets the Query for the Coroner Map(CR) layer in the map&lt;/P&gt;&lt;P&gt;timelist = ["12:00am - 01:00am","01:00am - 02:00am","02:00am - 03:00am","03:00am - 04:00am","04:00am - 05:00am",\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "05:00am - 06:00am","06:00am - 07:00am","07:00am - 08:00am","08:00am - 09:00am","09:00am - 10:00am",\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "10:00am - 11:00am","11:00am - 12:00pm","12:00pm - 01:00pm","01:00pm - 02:00pm","02:00pm - 03:00pm",\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "03:00pm - 04:00pm","04:00pm - 05:00pm","05:00pm - 06:00pm","06:00pm - 07:00pm","07:00pm - 08:00pm",\&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "08:00pm - 09:00pm","09:00pm - 10:00pm","10:00pm - 11:00pm","11:00pm - 12:00am"]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Check for an output folder and complete &lt;/P&gt;&lt;P&gt;if not os.path.exists(outputfolder):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.makedirs(outputfolder)&lt;/P&gt;&lt;P&gt;else:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit("Folder already exists")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;mxd = arcpy.mapping.MapDocument(mxdpath)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# loop through hours for each layer and export to .png&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for step in hourdriver:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr2 in arcpy.mapping.ListLayers(mxd,"CR"):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr2.definitionQuery = coronerquery+"".join(str(step))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print lyr2.definitionQuery # added for diag&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr in arcpy.mapping.ListLayers(mxd,"TA"):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.definitionQuery = trafficquery+"".join(str(step))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print lyr.definitionQuery # added for diag&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for elm in arcpy.mapping.ListLayoutElements(mxd, "TEXT_ELEMENT"):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if elm.name == "TIME_DESC":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Found it"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elm.text = timelist[step]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print elm.text&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; filename = outputfolder+"".join(str(step))+""".png""" &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print filename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.save()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPNG(mxd,filename)&lt;/P&gt;&lt;P&gt;print "Done with Maps"&lt;/P&gt;&lt;P&gt;&amp;lt;/python&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 15:44:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560972#M43912</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2015-05-05T15:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560973#M43913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes...to edit code blocks and format them, you have to do so within the actual original post not from within the 'mailbox' which I think you did.&amp;nbsp; There is a request to add the advanced editor in both places&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't figure out specifically, but I did notice your &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/ExportToPNG/00s30000002s000000/"&gt;export to png is&lt;/A&gt;...to say... a bit minimalist.&amp;nbsp; Perhaps you need to be more specific as to whether you want to export just the default page layout or the dataframe, which you need to specify explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any event, you can edit your code by going to the original post, simply by clicking on its title in your inbox and edit from there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 16:04:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560973#M43913</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-05-05T16:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560974#M43914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah ok thanks for the insight. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK i will try that thanks for the time and linking the resources for me, i appreciate the help very much. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 16:11:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560974#M43914</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2015-05-05T16:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560975#M43915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I figured out it has to do with the SDE I am using for the data connection. If i run Layer.isBroken outside of arc-map or arc-catalog it returns that my layers are broken. If i run it in arc-map or arc-catalog it runs fine. after doing some searching i couldn't find a way to repair an SDE. I found ways to replace, even build one, neither worked however. I even tried some different log in credentials. What kills me was it worked great last week but now it won't... I am waiting on my GIS department but I think i am going to try uninstalling and re installing arcmap to see if something can be fixed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This guy had the same question I think &lt;A href="https://community.esri.com/thread/117276"&gt;How to refresh SDE connection from arcpy?&lt;/A&gt; and no one knew so I think its worth the re install since i have spent two days on this and am falling behind on other projects. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if anyone has any insight or maybe a way to refresh/repair an SDE from outside Arcmap. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 22:03:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560975#M43915</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2015-05-05T22:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560976#M43916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had my IT do a clean uninstall and a re-install and my pythons are back online. I think what happened is that I was playing with Anaconda and noticed my Numpy in arcpy was 1.6.1 and so I removed it and added Numpy 1.9.2. This is the only change i can think of I made to the Arcpy LIB. I just didn't notice because i was working on a different script. I think I will still be able to play with anaconda but i am not planning to touch the Arcpy LIB again. three days down the tube but still worth it to save the time with the scripts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again Dan for your time and help on this. Hopefully it will help the next guy touching things they shouldn't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 19:20:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560976#M43916</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2015-05-06T19:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560977#M43917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the tip...I have been looking Anaconda for some other work...maybe on a different machine until I can investigate this more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 19:28:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560977#M43917</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-05-06T19:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Blank PNG export</title>
      <link>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560978#M43918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well just to clarify the problem was me I think, Anaconda had a newer numpy then ARCpy and I thought to my self well i can't have an older LIB anywhere.... I first started using anaconda for my mapping Py and I got an error that said " this was compiled for numpy 6 you are using numpy 9. so i thought to my self oh i need to get rid of the numpy 6 in Arcpy and that will fix it.... so i did.... then a couple days later I run my old script and noticed the problem. As with many things this was a me problem I think.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 19:39:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/blank-png-export/m-p/560978#M43918</guid>
      <dc:creator>KendrickSchuett</dc:creator>
      <dc:date>2015-05-06T19:39:05Z</dc:date>
    </item>
  </channel>
</rss>

