Suppose we have a list of images, like the following:
imageList = Table[Plot[Sin[k*x], {x, 0, 2 Pi}], {k, 1, 4, .05}];
We can animate those images like so:
ListAnimate[imageList]
But now suppose we want the animation bigger. We could stick an ImageSize option into the Plot command used to generate the images, but suppose we're not allowed to tamper with imageList.
We could manually resize each frame in the list animation. That works, but how can we accomplish that less tediously?