Home > Articles

Symbols in SVG

📄 Contents

  1. Symbols
  2. Creating Symbols and Definitions
  3. Summary
  4. Q&A
  5. Workshop
This chapter is from the book

This chapter is from the book

Creating Symbols and Definitions

As far as most Web developers are concerned, symbols came onto the scene when Flash was introduced. By saving an object into Flash's symbol library, the same item could be used over and over again with very little impact on file size.

Obviously, in the case of Web graphics, smaller is generally better, as many users still access the Web through dial-up modems. Thus, a technology that intelligently recycles its content becomes a popular tool in the online world.

SVG's use of symbols offers the same value that Flash does: 1) graphics become smaller to download as more of their visual components are replicated using symbols, and 2) graphics become easier to modify when their content comprises symbols.

With such benefits, why not make everything a symbol? For starters, if an object does not appear more than once, making it a symbol increases the amount of your code. As you go through this chapter, you will see that every instance (the term used to describe the application of a symbol within the content of the document) requires a reference element. When an object appears more than once, each reference element will likely be smaller in size than the actual artwork it represents; when the object appears only once, adding a reference only adds to the file size.

Second, if an object appears only once, making it a symbol can produce confusing results for a developer. Symbols are kept apart from the content area inside an SVG document. When several instances of the symbol occur, the efficiency of the coding and file size justify the inconvenience of looking elsewhere to understand the content being referenced. If only one instance exists, most developers will scratch their heads trying to understand why you made a "one-trick pony" a symbol.

The application of symbols is even easier than the concept and the rationale. To create a symbol, you need two items:

  • The artwork or item to be referenced, contained within a definitions library

  • A reference element

Artwork to be used as a symbol can be stored within either a defs or a symbol element. For a symbol to be referenced, however, it must have been named with the id attribute (first introduced in Hour 2). Once named, the symbol can be referenced with the use element. The use element can have a variety of attributes added to it, such as x and y to determine the symbol's placement on the page, but the most important attribute references the symbol. This attribute uses the syntax xlink:href=#symbolName, where symbolName is the name of the symbol to be referenced.

TIP

An SVG viewer will never render any content placed within a defs or symbol element. Such content will appear only when referenced by the use element.

To illustrate the symbol concept, follow Listing 8.1 to store your cloud illustrations (from the news center weather graphic example begun in Hour 1) in the defs element. First, begin by copying the code from Listing 7.1 and pasting it into a new document. This will provide you with a basic illustration of the sun and sky.

Next, create a defs element (line 15 in Listing 8.1) to store your cloud symbol in. In Listing 7.2, you began by using ellipses in place of the actual cloud artwork. If you were successful with the first exercise at the end of Hour 5, however, you likely produced art similar to lines 17 through 22. To make this a usable symbol, group the artwork (lines 16 and 23) and provide an id attribute value to name the symbol (Cloud will do just fine).

Add a use element (line 27) to reference the new Cloud symbol, and position the instance of the symbol with the x and y attributes. Add a style rule (line 9) for a white fill, and apply the class to the use element. Once positioned and stylized, copy this element and paste it on the line below (line 28) to create the second cloud; be sure to modify the x and y attribute values so that the two instances aren't overlapping.

By keeping the actual Cloud symbol devoid of style information, you can use the same artwork for both the "Sunny" and "Rainy" illustrations. (You will be building the rainy illustration later.) With these changes in place, your resulting graphic will look like Figure 8.1.

Listing 8.1 Storing the Cloud Illustration As a Symbol

01: <?xml version="1.0" standalone="no"?>
02: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
03:  "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
04:
05: <svg width="500" height="300">
06:
07:   <style type="text/css">
08:     <![CDATA[
09:       .FillFFFFFF{fill:#FFFFFF;}
10:       .Fill99CCFF{fill:#99CCFF;}
11:       .FillFFFF00{fill:#FFFF00;}
12:     ]]>
13:   </style>
14:   
15:   <defs>
16:     <g id="Cloud">
17:       <circle cx="24" cy="36" r="15"/>
18:       <circle cx="41" cy="26" r="17"/>
19:       <circle cx="90" cy="40" r="13"/>
20:       <circle cx="105" cy="31" r="13"/>
21:       <ellipse cx="75" cy="20" rx="27" ry="20"/>
22:       <ellipse cx="56" cy="50" rx="25" ry="18"/>
23:     </g>
24:   </defs>
25:
26:   <rect id="Sky" x="10" y="45" width="200" height="245" class="Fill99CCFF"/>
27:   <use id="SunCloud1" xlink:href="#Cloud" x="–20" y="20" class="FillFFFFFF"/>
28:   <use id="SunCloud2" xlink:href="#Cloud" x="150" y="210" class="FillFFFFFF"/>
29:   <circle id="Sun" cx="105" cy="160" r="56" class="FillFFFF00"/>
30:
31: </svg>

Figure 8.1 Using symbols to reference the cloud illustrations.

As you develop the news center further throughout the book, you'll notice that the same symbol is used to create the thunderstorm clouds. By the end of the example, you will have saved 28 lines of code simply by using the symbol concept for your cloud illustrations.

To further maximize your coding efficiency, symbols can be made up of other symbols. By reusing symbols within each other, grouping one with another and then creating a new symbol with this content, you can create complex but easy to change graphics.

To attempt this symbol-within-a-symbol effect, take a break from the news center example and picture a pegboard with alternating white and red pegs in its holes. Creating such an image will require code (Listing 8.2) that builds up from the lowest common denominator.

First, create a symbol based on a circle named peg (line 7 in Listing 8.2); this will serve as the shape for all the pegs on the board, regardless of color. To distinguish the pegs by color, use the use element to create two new symbols, pegRed and pegWhite, that reference the original peg symbol for shape; then apply paint information (lines 8 and 9).

Next, create two more symbols (lines 10 and 16) to define pegboard columns that start with red and white pegs respectively. Each column symbol should contain references to the colored peg symbols with appropriate coordinate information for placement. This ends your symbol creation. Finally, create six references to the column symbols with coordinate information to correctly arrange their positions (lines 24–29). When you're finished, your symbol-within-a-symbol example will render similar to Figure 8.2.

Listing 8.2 Using Symbols within Symbols

01: <?xml version="1.0" standalone="no"?>
02: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
    "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
03:
04: .<svg width="500" height="300">
05:
06:   <defs>
07:     <circle id="peg" r="15"/>
08:     <use id="pegRed" xlink:href="#peg" style="fill:red; stroke:black;"/>
09:     <use id="pegWhite" xlink:href="#peg" style="fill:white; stroke:black;"/>
10:     <g id="columnRed">
11:       <use xlink:href="#pegRed" x="100" y="50"/>
12:       <use xlink:href="#pegWhite" x="100" y="100"/>
13:       <use xlink:href="#pegRed" x="100" y="150"/>
14:       <use xlink:href="#pegWhite" x="100" y="200"/>
15:     </g>
16:     <g id="columnWhite">
17:       <use xlink:href="#pegWhite" x="150" y="50"/>
18:       <use xlink:href="#pegRed" x="150" y="100"/>
19:       <use xlink:href="#pegWhite" x="150" y="150"/>
20:       <use xlink:href="#pegRed" x="150" y="200"/>
21:     </g>
22:   </defs>
23:
24:   <use xlink:href="#columnRed" x="0" y="0"/>
25:   <use xlink:href="#columnWhite" x="0" y="0"/>
26:   <use xlink:href="#columnRed" x="100" y="0"/>
27:   <use xlink:href="#columnWhite" x="100" y="0"/>
28:   <use xlink:href="#columnRed" x="200" y="0"/>
29:   <use xlink:href="#columnWhite" x="200" y="0"/>
30:
31: </svg>

Figure 8.2 Creating a pegboard illustration to demonstrate symbol-within-symbol creation.

By containing symbols within symbols, you can maximize the use of your objects. In this example, one circle became a multi-colored pegboard. However, due to its modular creation, the same pegboard could become a checkerboard in seconds simply by swapping out the circle with a rectangle, as shown in line 7 of Listing 8.3. Results are shown in Figure 8.3.

Listing 8.3 Demonstrating the Efficiency of Symbols within Symbols

01: <?xml version="1.0" standalone="no"?>
02: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
     "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
03:
04: <svg width="500" height="300">
05:
06:   <defs>
07:     <rect id="peg" width="50" height="50"/>
08:     <use id="pegRed" xlink:href="#peg" style="fill:red; stroke:black;"/>
09:     <use id="pegWhite" xlink:href="#peg" style="fill:white; stroke:black;"/>
10:     <g id="columnRed">
11:       <use xlink:href="#pegRed" x="100" y="50"/>
12:       <use xlink:href="#pegWhite" x="100" y="100"/>
13:       <use xlink:href="#pegRed" x="100" y="150"/>
14:       <use xlink:href="#pegWhite" x="100" y="200"/>
15:     </g>
16:     <g id="columnWhite">
17:       <use xlink:href="#pegWhite" x="150" y="50"/>
18:       <use xlink:href="#pegRed" x="150" y="100"/>
19:       <use xlink:href="#pegWhite" x="150" y="150"/>
20:       <use xlink:href="#pegRed" x="150" y="200"/>
21:     </g>
22:   </defs>
23:
24:   <use xlink:href="#columnRed" x="0" y="0"/>
25:   <use xlink:href="#columnWhite" x="0" y="0"/>
26:   <use xlink:href="#columnRed" x="100" y="0"/>
27:   <use xlink:href="#columnWhite" x="100" y="0"/>
28:   <use xlink:href="#columnRed" x="200" y="0"/>
29:   <use xlink:href="#columnWhite" x="200" y="0"/>
30:
31: </svg>

Figure 8.3 Similar code to Listing 8.2 suddenly produces a checkerboard image.

By using this efficient method to design your documents, you will be able to make sweeping changes to your imagery with the replacement of one object. Although more code was used to create this checkerboard/pegboard than if you drew each element by hand, the rule of "less is more" can often be overruled by "efficiency is the key." By intelligently planning your artwork to use symbols when possible or practical, you can significantly reduce the amount of effort necessary to modify the work later.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020