This tag is used to display the image on the page. This tag renders an html "img" element. This tag renders the image file stored in the location specified in the "value" attribute of "graphicImage" tag. If this image file is not present in the specified location then the value of the alt attribute is displayed instead of the desired image file. In this example, value attribute is set to the location "images/LOGO.gif" and alt attribute is set to "This is alternative text if any problem in rendering image.". So this image is displayed on the page, if there is any problem in getting this image file ("images/LOGO.gif") then the text specified in the alt attribute ("This is alternative text if any problem in rendering image.") is displayed on the page. We can set width, height of the image. If we want tooltip for this image to be displayed when focus comes to the image, then we can use title attribute. There are several attributes of this tag to give it different look and structure like if we set ismap attribute to true within anchor tag then the positon of the pointer of mouse is displayed at the bottom of browser window and if we set the usermap to any map then we can select area and link this area to any address of other page. This component also has ability to be visible or not visible according to the role of the user. In the same way, it also has the ability to be enable or disable according to the user role. This component also has the capability to render the id for the component just the same as we have mentioned in the id attribute of the tag. Normally the naming system of JSF renders the id for the component with some additional text, typically with id of the form as prefix. But this component has an attribute forceId which forces the component to render the same id mentioned in the id attribute.
Code Description :
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%> <f:view>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>t:inputText example</title>
<style type="text/css">
<!--
body{
background-color:#fff2f2;
margin-top:30;
}
-->
</style>
</head>
<body ><center>
<h:outputLink value="http://www.roseindia.net">
<t:graphicImage id="gi" url="images/LOGO.gif" align="left" border="1"
hspace="100" vspace="0"
alt="This is alternative text if any problem in rendering image."
ismap="true" usemap="#RoseIndia"/>
<MAP name="RoseIndia">
<AREA coords="50,51,28" shape="circle"
href="http://www.roseindia.net/jsf"
alt="Home" title="rose India home">
</MAP>
</h:outputLink>
</center></body>
</html>
</f:view>
|
Rendered Output :
This is the output of the above code in which an image "LOGO.gif"
is displayed. In the bottom of the image you can see the position of the
cursor over the image. In this figure it is 16,14. The position starts
from the upper left corner of the image.

This figure shows the result of using usemap attribute. When we move the pointer of the mouse over the circle in the image and click anywhere we will move to the address provided in the map for the circled area. In this example it is "roseindia.net./jsf".

Html Source Code :
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>t:inputText example</title>
<style type="text/css">
<!--
body{
background-color:#fff2f2;
margin-top:30;
}
-->
</style>
</head>
<body ><center>
<MAP name="RoseIndia">
<AREA coords="50,51,28" shape="circle"
href="http://www.roseindia.net/jsf"
alt="Home" title="rose India home">
</MAP>
<a id="_idJsp0" name="_idJsp0" href="http://www.roseindia.net">
<img id="gi" src="images/LOGO.gif" align="left"
alt="This is alternative text if any problem in rendering image."
border="1" hspace="100" ismap="ismap" usemap="#RoseIndia"
vspace="0" />
</a>
</center><!-- MYFACES JAVASCRIPT -->
</body>
</html>
|
This tag contains attributes given below :
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Tomahawk graphicImage tag
Post your Comment