vb.net - Add image and text in one line itextsharp -


below code adding text , image in separate lines. how can display them in 1 line?

pdfdoc.add(image) pdfdoc.add(new paragraph(text)) 

this found, using chunk():

dim p new paragraph() p.add(new chunk(image, 0, 0)) p.add(text) document.add(p) 

Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -