Peter B. West wrote:

A colleague of mine has just found this:

From PDFFontDescriptor
     */
    public PDFFontDescriptor(String basefont, int ascent,
                             int descent, int capHeight, int flags,
                             PDFRectangle fontBBox, int italicAngle,
                             int stemV) {

From PDFFactory

            descriptor = new PDFFontDescriptor(desc.getFontName(),
                                         desc.getAscender(),
                                         desc.getDescender(),
                                         desc.getCapHeight(),
                                         desc.getFlags(),
                                         new
PDFRectangle(desc.getFontBBox()),
                                         desc.getStemV(),
                                         desc.getItalicAngle());

Your message is a little cryptic Peter. Are you trying to say there is a bug caused by the fact PDFFactory mis-uses the Constructor to PDFFontDescriptor? (looks like StemV and italicAngle arguments are transposed)

Chris


Reply via email to