Hi,
You can put an image in any shape by filling the shape with an image fill style. For example:
NShape
shape = new NRectangleShape(10, 10, 150, 100);
document.ActiveLayer.AddChild(shape);
NStyle.SetFillStyle(shape, new NImageFillStyle(imageFileName));For more information on styles and style composition take a look at the online documentation.