vote up 0 vote down star

Hello All,

How to Convert Text to Image and show in UIImageview. Can anyone know the conversion from Text to Image?

flag

0% accept rate

2 Answers

vote up 4 vote down

You can start playing around with something like this:

NSString *string = @"Some text";
UIGraphicsBeginImageContext(CGSizeMake(80, 50));
[string drawAtPoint:CGPointMake(10, 20)
           withFont:[UIFont systemFontOfSize:12]];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

result contains the UIImage with the text in it, and you can assign it to the UIImageView image property.

link|flag
vote up -1 vote down

I haven't done any iPhone development; however, I did perform this sort of task with a different domain and hopefully you will find it useful. Here's what my program did:

1) Read an XML file 2) Placed the contents into a hash 3) created nodes based on the hash 4) Loaded images into the nodes, based on data in the structure 5) Created a composition based on node information 6) Displayed the final image

I used libraries for the xml reading and image generation/manipulation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.