14.15. Adding images and country flags to the background of the graph

The background can not only be a solid (or semi-transperant) color. It is also possible to use images as backgrounds. These can be arbitrary user specified images in any format (as determined by there file suffix). Since the library has a built in support for all established countries (as of 20 Dec 2008) in regards to there flags (all flags are encoded within the library) it is also possible to use a country flag as a background. This could be considered a special case of the user defined image background.

  1. Graph::SetBackgroundImage($aFileName,$aBgType=BGIMG_FILLPLOT,$aImgFormat='auto')

  2. Graph::SetBackgroundImageMix($aMix)

  3. Graph::SetBackgroundImagePos($aXpos,$aYpos)

  4. Graph::SetBackgroundCountryFlag($aName,$aBgType=BGIMG_FILLPLOT,$aMix=100)

For both background images and flags it is possible to define how the image should be used on the page with the background type parameters. This parameter specifies how the image should be placed on the graph. The following options are available:

To help explain these types of backgrounds they are illustrated below by adding the image in Figure 14.87 as a background to the plain graph in Figure 14.86. In order not to have the background image take to much emphasis in the graph we specify the mixing to 25% with a call to

1
$graph->SetBackgroundImageMix(25);

Figure 14.86. The graph that will be used to add backgrounds to

The graph that will be used to add backgrounds to

Figure 14.87. Background image (a closeup of our burnt server)

Background image (a closeup of our burnt server)

In the table below the various options for adjusting the size and position of the background image are shown

Figure 14.88. BGIMG_COPY (background_type_ex0.php)

BGIMG_COPY (background_type_ex0.php)


BGIMG_COPY

Figure 14.89. BGIMG_CENTER (background_type_ex1.php)

BGIMG_CENTER (background_type_ex1.php)


BGIMG_CENTER

Figure 14.90. BGIMG_FREE (background_type_ex2.php)

BGIMG_FREE (background_type_ex2.php)


BGIMG_FREE

Figure 14.91. BGIMG_FILLPLOT (background_type_ex3.php)

BGIMG_FILLPLOT (background_type_ex3.php)


BGIMG_FILLPLOT

Figure 14.92. BGIMG_FILLFRAME (background_type_ex4.php)

BGIMG_FILLFRAME (background_type_ex4.php)


BGIMG_FILLFRAME

 

14.15.1. Using country flags as backgrounds

The method Graph::SetBackgroundCountryFlag($aName,$aBgType,$aMix) makes it possible to use an of the built-in country flags as a background i the same way as any other user specified background image. All included country flags as of Dec 2008 are listed in Appendix F. The background country flag is specified by its short name as listed in Appendix F.

Caution

The dynamics of world politics and geographic boundaries will no doubt make the list of included countries obsolete almost at the same time the library is released. The intention is that all currently known country and similar geographic entities should be included. Any missing flags shall and can not be interpreted as any political stand it is merely a consequence of political changes since the library was released or a possible oversight or simply a mistake either human or algorithmically in how the country flags are produced.