How can I create an empty n*m PNG file in Python?

png, python, python-imaging-library

Solution

from PIL import Image
image = Image.new('RGB', (n, m))

Problem

I would like to combine 4 PNG images to one PNG file. I know who to combine them with Image.paste method, but I couldn't create an save output file! Actually, I want to have a n*m empty PNG file, and use to combine my images. I need to specify the file size, if not I couldn't use paste method.

Original source