TextProp tpb = tpcb.addWithName("font.color");
tpb.setValue(0x05000000);
// Third char style is coloured, FF 33 00 FE, and 16 long
TextPropCollection tpcc = stpa.addCharacterTextPropCollection(16);
TextProp tpc = tpcc.addWithName("font.color");
tpc.setValue(0xFE0033FF);
// Should now be the same as data_a
ByteArrayOutputStream baos = new ByteArrayOutputStream();
stpa.writeOut(baos);