Hi Renyue,
It depends a bit on how you are saving the image, unfortunately. If you are using a recent changeset of yt (after 2.4 where the transpose causes symmetric images on some compilers/machines), and you save with:
cam.snapshot('image1.png')
Then image1.png will have north pointing up.
If you did:
im = cam.snapshot()
write_bitmap(im, 'image2.png', tranpose=False)
Then image2.png will have north pointing right.
If you did
im = cam.snapshot()
write_bitmap(im, 'image3.png', transpose=True)
Then image3.png will have north pointing up.
I am working on ways to make sure that it always points up by using the new ImageArray class, but have not come up with the full solution yet. I hope that description helps.
Sam