Creating new picture symbol symbol arcgis

In ArcGIS, you can create a new picture symbol by following these steps:

Method 1: Using the Symbol Selector

  1. Open ArcGIS and navigate to the map view.
  2. Right-click on the map and select "Properties" (or press Ctrl+Shift+P).
  3. In the "Properties" window, click on the "Symbols" tab.
  4. Click on the "New Symbol" button.
  5. In the "Create Symbol" window, select "Picture" as the symbol type.
  6. Click on the "Browse" button to select the image file you want to use as the symbol.
  7. Adjust the symbol size and anchor point as needed.
  8. Click "OK" to create the new symbol.

Method 2: Using the ArcGIS Pro XML Editor

  1. Open ArcGIS Pro and navigate to the map view.

  2. Right-click on the map and select "Properties" (or press Ctrl+Shift+P).

  3. In the "Properties" window, click on the "XML Editor" button.

  4. In the XML Editor, navigate to the "Symbols" section.

  5. Click on the "Add Symbol" button.

  6. In the "Add Symbol" window, select "Picture" as the symbol type.

  7. Enter the following XML code to create a new picture symbol:

    <PictureSymbol>
    <ImageSource>{your_image_file_path}</ImageSource>
    <Size>24</Size>
    <AnchorPoint>Center</AnchorPoint>
    </PictureSymbol>

    Replace {your_image_file_path} with the actual path to the image file you want to use as the symbol.

  8. Click "OK" to create the new symbol.

Tips and Variations