<?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 Symbol Dictionary Buffer Image Colors in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102112#M295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I noticed that images received from the MPC's symbol dictionary class display in Java Swing components in different colors than that they appear on the JMap. This apparent anamoly does not occur in Windows, but only in Linux platforms, and it was also noticed on previous versions of Runtime. Is there a workaround to this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21501[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21502[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21503[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21504[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21505[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Feb 2013 15:58:37 GMT</pubDate>
    <dc:creator>CarlosColón-Maldonado</dc:creator>
    <dc:date>2013-02-06T15:58:37Z</dc:date>
    <item>
      <title>Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102112#M295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I noticed that images received from the MPC's symbol dictionary class display in Java Swing components in different colors than that they appear on the JMap. This apparent anamoly does not occur in Windows, but only in Linux platforms, and it was also noticed on previous versions of Runtime. Is there a workaround to this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21501[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21502[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21503[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21504[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21505[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 15:58:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102112#M295</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2013-02-06T15:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102113#M296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Carlos,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've checked this out in Ubuntu and I'm afraid you've got me - this is a bug!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've raised this as an issue and it will be fixed for the next release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the mean time you might find the following code snippet useful:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //get the image&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BufferedImage symbolImage = symDictionary.getSymbolImage(selectedSymbol.toString(), 150, 150);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //bit shifting to swap around the Red and Blue to correct in Linux (not needed for Windows)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (int x = 0; x != symbolImage.getWidth(); x++) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (int y = 0; y != symbolImage.getWidth(); y++) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int argb = symbolImage.getRGB(x, y);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int abgr = (argb &amp;amp; 0xFF000000) | (argb &amp;amp; 0x000000FF) &amp;lt;&amp;lt; 16 | (argb &amp;amp; 0x0000FF00) | (argb &amp;amp; 0x00FF0000) &amp;gt;&amp;gt; 16;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; symbolImage.setRGB(x, y, abgr);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will of course need to remove this code when the next release comes out otherwise your colors will be wrong again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 09:17:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102113#M296</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2013-02-07T09:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102114#M297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: coloncm&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your workaround works. I take it that all symbol images are 150 pixels in width and height. Is this correct? I had to change the parameters of the java.awt.Graphics object's drawImage method to take the component's dimensions, instead, i.e.:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;g.drawImage(bufferedImage, 0, 0, getSize().width, getSize().height, null);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 15:03:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102114#M297</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-02-07T15:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102115#M298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The buffered image from the getSymbolImage method is created from vector data into the size of image you request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you were to create an image 500 x 500 then it will not appear blocky because we have sized up a smaller image.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The 150 x 150 I chose above was not related to any internal sizing of the data - it just looked good in my example &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 09:28:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102115#M298</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2013-02-08T09:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102116#M299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: coloncm&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good to know, and the size you chose is good enough for me, too. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Recall my symbol image manipulation suggested feature to allow displaying symbols using image filters based on currency, i.e., current, stale, old and "remove me" (purgeable):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21609[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to similarly manipulate the image being displayed by the message group layer, perhaps via the Graphic object or its layer? I know that your workaround works on image previewing on swing components, but it does not affect how they're being displayed on the JMap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know I may be reaching, but I must ask. :rolleyes:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 12:28:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102116#M299</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-02-08T12:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102117#M300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Out of the box there isn't a way of manipulating symbols in the message group layer in the way you have suggested, but you could try this which would work for point based graphics:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- Create yourself a new graphics layer on the map&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- You can create a PictureMarkerSymbol which uses an image based on a buffered image from the symbol dictionary.&amp;nbsp; The buffered image can be altered as desired.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Add the picture marker symbol to the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So you might have some code like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BufferedImage img = symDictionary.getSymbolImage(selectedSymbol.toString(), 150, 150);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //some code to make the image a little different in some way

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PictureMarkerSymbol pms = new PictureMarkerSymbol(img);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Point pt = map.toMapPoint(eventInfo.getX(), eventInfo.getY());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Graphic gr = new Graphic(pt, pms);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GraphicsLayer gl = new GraphicsLayer();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.getLayers().add(gl);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gl.addGraphic(gr);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's not as versatile as using the message processor (unique designation labels will not display for example), but it might be worth trying.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Out if interest, are these display styles (current / stale / old) part of the 2525C standard?&amp;nbsp; (excuse the question, but I'm not a 2525C expert)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:18:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102117#M300</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2021-12-11T06:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102118#M301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: coloncm&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the code snippet; I really appreciate it. Luckily, I won't need affected symbols to display labels because my application requires use of labels only on temporary drawings. I'll give it a world and let you know how it works out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While I am not in liberty to write much about it here, I can tell you that most military-fielded systems provide for functionality that allows connected elements report the currency of their location via messsaging:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. A "current" state of an element's symbol on the map means that they are timely reporting their location changes or at specified intervals, even if it hasn't changed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. A "stale" state means that they have not reported their location for a specified configurable amount of time (sort of like a second chance to report in). This lets observers know that they may still (but may not) be there,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3. An "old" state means that they have not reported their location for a specified configurable amount of time (sort of like a last chance to report in). This lets observers know that they are likely not there, and &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4. A "delete" state means that they are no longer reporting their location and there is a likelyhood that they are not at the last reported location (not online). This state is normally used by fielded systems to "purge" (remove) their situational awareness (symbols) from their common operating picture (map) so that only recent data is viewed for operational purposes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, this functionality is not driven by MIL-STD 2525-Series but by standard operating procedures and/or military doctrine. Agencies differ in that respect. Clear as mud? &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My suggested feature was to allow users of the API implement image filters, perhaps three or four concrete known classes or a single interface, for modifying the displaying of symbols while leaving the time and motion functonality up to them (because it will differ).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Out of curiosity, can the graphics layer on your code snippet also be one the message group layer manages?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 16:38:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102118#M301</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-02-08T16:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102119#M302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It's always good to hear how developers are using the API - this helps is to make the product better!&amp;nbsp; The forum requests have resulted in a few items of functionality recently, so keep the ideas coming.&amp;nbsp; We can't do everything though...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Going back to the use of the graphics layer in the message group layer...&amp;nbsp; my initial thoughts here were that you should avoid doing this, but then I thought about the issue of the draw order of the graphics.&amp;nbsp; I've checked this out and the feeling is that using one of the existing graphics layers in the message group layer is okay.&amp;nbsp; However (I'm sure you were expecting this!!!), I wouldn't try manipulating the 2525C graphics (removing for example), and don't try removing graphics layers from the message group layer (the latest version of the API does a reasonable job preventing you from doing this).&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 13:36:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102119#M302</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2013-02-11T13:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102120#M303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: coloncm&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Mark,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I agree that it's good to have a forum were users of your API can give you feedback. I'd think of it as a gold mine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wouldn't dream of removing Graphic objects let alone their containing layers off the message group layer, but rather have the API do it's thing as it was intended. Can Graphic objects be replaced by id without major repercusions of the MPC (e.g., a refresh would recover it, its layer would stop working, etc.)? It seems that it would be the only way the image could displayed as I'd like it to be.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I thought I'd throw this in since it pertains to symbol image deviation (not involving labels or modifiers). MIL-STD-2525-Series manuals address the visualization of "Status", which refers to whether a warfighting symbol exists at the location identified (i.e., status is "present") or will in the future reside at that location (i.e., status is "planned, anticipated, suspected," or "on order"). Regardless of affiliation, present status is indicated by a solid line and planned status by a dashed line. The frame is solid or dashed, unless the symbol icon is unframed, in which case the icon itself is drawn dashed. Planned status cannot be shown if the symbol is an unframed filled icon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The setting of a STATUS/OPERATIONAL CONDTION (Position 4 of SIC) using the current MPC, including previous versions, does not have an affect on symbols' frames.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You'll find a link of this &lt;/SPAN&gt;&lt;A href="http://en.wikipedia.org/wiki/NATO_Military_Symbols_for_Land_Based_Systems"&gt;here&lt;/A&gt;&lt;SPAN&gt; and also appears on Table III, "Present and planned status for tactical symbols" (Page 18), of MIL-STD-2525C.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 13:59:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102120#M303</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-02-11T13:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102121#M304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have received more details that might further explain the need for "display styles" of symbols for depicting currency. While I said that this functionality is not driven by MIL-STD 2525-Series, agencies have used Table IX, "Tactical symbol display hierarchy" (Page 35), to modify military symbols using a variety of attributes in order to keep them within standards.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]21680[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While I am not aware of other agencies, most fielded systems of the Department of the Army have used Frame: ON, Fill: OFF, and Icon: ON (older systems black or white and most recent ones default colors). Right now, only the first option is available.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 16:40:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102121#M304</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2013-02-11T16:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102122#M305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: coloncm&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I thought I'd mention that this workaround is no longer necessary as of version 10.2 of the SDK. I'm yet to see, and await patiently for, the implementation of the ability to manipulate symbol frame icon and fill functions per military standards.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2014 15:10:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102122#M305</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-01-15T15:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Dictionary Buffer Image Colors</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102123#M306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I thought I'd mention that this workaround is no longer necessary as of version 10.2 of the SDK.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By that, I mean that, per this &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/73656-Creating-composite-symbol-to-group-different-symbols?p=383986&amp;amp;viewfull=1#post383986"&gt;post&lt;/A&gt;&lt;SPAN&gt;, I was able to implement a workaround to my military symbols' frame/fill requirements via the use of &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/java/api-reference/com/esri/core/symbol/CompositeSymbol.html"&gt;CompositeSymbol&lt;/A&gt;&lt;SPAN&gt; objects. It would be nice if it was done out-the-box.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 May 2014 12:05:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/symbol-dictionary-buffer-image-colors/m-p/102123#M306</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2014-05-04T12:05:46Z</dc:date>
    </item>
  </channel>
</rss>

