ofxTextSuite icon indicating copy to clipboard operation
ofxTextSuite copied to clipboard

Openframeworks Text Manipulation Suite

Results 11 ofxTextSuite issues
Sort by recently updated
recently updated
newest added

I found out you were using: glTranslatef(x, y, 0.0f); in stead of: glTranslatef(x, y, 1); that's why the text looks a little bit rotated.

- return text block bounding box - fixed drawLeft() which drew first line too height when scale != 1

When there is a text block, the justify formatting tries to apply the rule to the last line of a paragraph. However, when there are a few words, they are...

hi i'm getting this in my console. it's successfully compiled but nothing is showing up?

Hey, If you are giving up on this, I'd like to maintain it.

Hi Luke, I really like this addon. I included a option to HTML format. Thanks, Carlos

Hi! I'm looking for a way to just add a line break to a block of text, however there is no such method in the header. I have tried writing...

![Displaying "klLLLLLLLLLL".](https://cloud.githubusercontent.com/assets/11806048/12381313/c1b63d0a-bd87-11e5-931d-56665c45122b.png) In `void ofApp::draw()` : ``` if (your_array.size() > 0) { string str = your_array[int(floorf(fmodf(seconds*3.f, float(your_array.size()))))]; draw_text(0, 60, "str = " + str); your_font2.setText(str); //It seems it doesn't draw...

Hello Luke, I want to start say thanks for sharing this wonderful code. I´m playing with it because I need some text-Animations for a museum instalation. I add an ring...

in drawing functions of ofxTextBlock class the value of alpha is not getting set, you probably forgot to set it in lines like: ofSetColor(words[currentWordID].color.r, words[currentWordID].color.g, words[currentWordID].color.b); I changed this line...