Thank you. I will look into that. What I am doing is saving first the Master, then resizing it and saving, then adding watermark and saving, and then resizing into thumbnail size. I don't think that cloning it will matter because I am saving it after I've saved the bigger copies, no?
I did find why I couldn't resize the image in the 2 places: I was using image.Resize((size.X, size.Y) when I should have used the size object alone: .Resize(size).
Works like I want (for now haha).
Am I losing quality by resizing it 2 times? once for 600x600 and once for thumbnail? If so, then clone sounds like the way to go.
Thank you very much dlemstra.
I did find why I couldn't resize the image in the 2 places: I was using image.Resize((size.X, size.Y) when I should have used the size object alone: .Resize(size).
Works like I want (for now haha).
Am I losing quality by resizing it 2 times? once for 600x600 and once for thumbnail? If so, then clone sounds like the way to go.
Thank you very much dlemstra.