No entiendo muy bien lo que preguntas. Pero supongo que quieres superponer 1 imagen encima de otra. Si es así, ya hay una respuesta here. Dentro de <grid>
, puede proporcionar tanto la imagen como personalizar la opacidad de cada imagen para que quede superpuesta.
Editado: Usted puede utilizar WriteableBitmap para eso y hay una biblioteca para la que ya se here. Después de añadir el WriteableBitmapExWinPhone en su proyecto WP7, puede combinar la imagen y el marco al hacer esto:
var photo = ...//you writeablebitmap of image here
var frame = ...//your writeablebitmap of frame here
var merge = new WriteableBitmap(435, 435); //size of merge canvas
merge .Clear(Colors.White); //white background
merge.Blit(new Rect(oX, oY, w, h), photo, new Rect(0, 0, photo.PixelWidth, photo.PixelHeight)); //draw the photo first
merge.Blit(new Rect(0, 0, 435, 435), frame, new Rect(0, 0, frame.PixelWidth, frame.PixelHeight)); //draw the frame
No está claro lo que busca hacer. –
@ Michael Petrotta: Lo edité. –
¿Puedes explicar a qué te refieres con "fusión", exactamente, en un nivel de píxel? –