mesaglam / alivepdf

Automatically exported from code.google.com/p/alivepdf
0 stars 0 forks source link

AddMultiCell Method #20

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
File PDF.as line 2200.

for some reason when cw[c] is equal to 0 (when you find a character with an
accent),l is reseting to 0 as well.

so i added a temporary variable called cwi to store the value of cw[c] and
then add this value to l.

here is the correction :
        ...
        var cwi:int = cw[c];
    l+=cwi;
    if(l>wmax){
        ...
        }

good day to everyone

Original issue reported on code.google.com by dubois.q...@gmail.com on 21 Dec 2007 at 3:34

Attachments:

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Hi Quentin,

Thanks, this issue is fixed in the upcoming release :)

castromatias met this issue : 
http://code.google.com/p/alivepdf/issues/detail?id=17

kind regards,

Thibault

Original comment by thibault.imbert on 21 Dec 2007 at 8:48

GoogleCodeExporter commented 9 years ago
Thanks a lot, i can't wait to test the new version.

your library is just great.

Quentin

Original comment by dubois.q...@gmail.com on 16 Jan 2008 at 1:09