Azur propale bold product name

Hi all.

I’m looking through pdf_azur.modules.php and pdf.lib.php but can not figure out how I can print out in pdf of porposals the product ref. and name to be bold i.e. the rounded area in the attached image.

Any help will be much appreciated.

http://www.fpdf.org/ <-- llok here.

I think from a quick look that this line here:

$pdf->SetFont(’’,’’, $default_font_size - 1);

Should look as follows:

$pdf->SetFont(’’,‘B’, $default_font_size - 1);

Maybe there is other settings to change.

Unfortunately this makes everything bold.

A peek at the great new trail shoes of the 2013 spring Outdoor Retailer spotlight. Creator janne kyttanen has made a line of 3D output high-heeled shoes for cubify, that can be received for a cause and printed. http://www.shoesworldly.com These can be broken up into many categories: runners, walkers, cross-trainers, hikers, and tennis shoes. . Get Running Shoes for Comfort, Not Pronation there is a purpose for their different design and sleek look. What do you believe? Do you desire it? I love these shoes so feminine and eye-catching. Saints HC Sean Payton Makes A Halftime Switch On His Shoes.

Ok, on the fpdf wiki you should find the answer on how to make only that part of the text bold. You will have most probably re-code some of the things.

Into core/lib/pdf.lib.php

Search

$libelleproduitservice=$prefix_prodserv.$ref_prodserv.$libelleproduitservice;
Replace by

$libelleproduitservice=$prefix_prodserv."<h3><b>".$ref_prodserv.$libelleproduitservice;

Search

$libelleproduitservice=$label;
Replace by

[code]
$libelleproduitservice=$label."</b></h3>";[/code

1 Like