I need to merge text with an image in single writable bitmap image through c# in windows phone 8 app. But I don't know how to merge text with image so that i can get a single writable bitmap image. Can any one help me? I tried this code for image but don't know how to add text with image?
Uri uri = new Uri("Images/Unlocked.png", UriKind.Relative);
StreamResourceInfo resourceInfo = Application.GetResourceStream(uri);
BitmapImage img = new BitmapImage();
img.SetSource(resourceInfo.Stream);
WriteableBitmap writeableBitmap = new WriteableBitmap(img);