<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
In order for my pdf file to look nicer, I changed the background to black, and now<br>I need to emphasize a number of lines between certain coordinates. Some lines need<br>to be shown as red, some as green, and some as blue, or a variation.<br>I tested the above requirement with the code below:<br>&nbsp; cairo_set_line_width (cr, .5);<br>&nbsp; cairo_set_source_rgb(cr, 1, 0, 0);<br>&nbsp; cairo_move_to (cr, 152.84, -50.0);<br>&nbsp; cairo_line_to (cr, 83.97, 30.93);<br>&nbsp; cairo_stroke_preserve(cr);<br>&nbsp; <br>&nbsp; cairo_set_source_rgb(cr, 0, 0, 1);<br>&nbsp; cairo_move_to(cr, 90, 1);<br>&nbsp; cairo_line_to(cr, 40, 1);<br>&nbsp; cairo_stroke_preserve(cr); <br>......................................<br>However, both lines are displayed as blue, with a very thin red line in the middle of it.<br>Is there a way to specify that one line needs to be only blue, and the other only red?<br>What would be the code to try?<br>I appreciate your help.<br>                                               </body>
</html>