1

Possible Duplicate:
Write text on image in WP7

I want take a picture from camera or media library in windows phone 8 programmatically and write a some text on this photo and the text have resizable,rotate,etc..,after that merge this photo and text in single layer, please help me Thanks in Advance.

Community
  • 1
  • 1
selvam
  • 1,177
  • 4
  • 18
  • 40

1 Answers1

1

Just put TextBlock control on Image control.

  <Grid>
   <Image source="source"/>
   <TextBlock Text="text"/>
  </Grid>

To TextBlock You can set margin and it will be on Image Control. You can resize, change font, change rotation and make animation on TextBlock.

Norbert Pisz
  • 3,392
  • 3
  • 27
  • 42
  • It's good, But i want take a photo from gallery or camera and write some text into the photo...... – selvam Jan 09 '13 at 04:59