Invisible text

Hi,


I have some strange, when I open it I don’t see any text but extracting text with aspose returns me a lot of text. Do You know from where that text came from?

Here is my test and attached document:
public class AsposeTest {

public void test() throws Exception {
Document doc = new Document(
“whiteSpace.doc”);
Iterator iterator = new Iterator();
doc.accept(iterator);

}

class Iterator extends DocumentVisitor {
public int visitRun(Run run) throws Exception {
System.out.println("RUN: " + run.getText());
return super.visitRun(run);
}

}
}


Thanks
Best regards

Hi Djordje,


Thanks for your inquiry. Your input document contains text. Please check the attached image for detail. There is no hidden text in your document also.

Please make sure that you have attached the correct document in this forum thread.