Add missing reference images.

This commit is contained in:
Hermann Kraus 2012-09-14 18:05:52 +02:00
parent 4d5ab83fb3
commit e5351ced6f
18 changed files with 2 additions and 1 deletions

View file

@ -102,7 +102,7 @@ void text_layout::break_line(text_line_ptr line, double wrap_width, unsigned tex
}
if (current_line_length > wrap_width)
{
unsigned break_position = breakitr->preceding(i);
unsigned break_position = wrap_before ? breakitr->preceding(i) : breakitr->following(i);
if (break_position <= last_break_position || break_position == BreakIterator::DONE)
{
//A single word is longer than the maximum line width.

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -55,6 +55,7 @@ files = [
{'name': "orientation", 'sizes': [(800, 200)]},
{'name': "hb-fontsets", 'sizes': [(800, 200)]},
{'name': "charspacing", 'sizes': [(200, 400)]},
{'name': "line_break", 'sizes': [(800, 800)]},
]
def render(filename, width, height, bbox, quiet=False):