Are you adding the image with a script? if so you can change the height and width of the image setting it equal to the height and width of the container canvas, or any percentage of it like so:
height = int(container.height * .75) //for 75% of the height width = int(container.width - 10)//to leave 10 pixels does this help? ~Mike --- In [email protected], kanu kukreja <kanukukr...@...> wrote: > > Hi, > I need a help from you all. > > I have 5 canvases all are of different dimension. > > If i add an image in one canvas, proportionally i want to show that in > another banners. > How i can achieve that? > > Thanks >

