ralfstuckert / pdfbox-layout

MIT License
156 stars 74 forks source link

Improve the word-wrapping/word-breaking support #10

Closed fref closed 7 years ago

fref commented 8 years ago

As of now, word-wrapping happens at word boundaries. (through TextSequenceUtil.drawText -> wordWrapToLines -> wordWrapToLines) This can be annoying for small columns where a single big word needs to be inserted or if Justify is supported as alignment someday.

It would be nice to be able to

ralfstuckert commented 7 years ago

Added word breaking as a strategy for 0.8.5, but I still have to write some doc on this topic

ralfstuckert commented 7 years ago

See wiki page on word break

fref commented 7 years ago

Brilliant!