Default image size not working

My guess is that there are spaces at the end of the option names:

update_option('image_default_size ', 'post_size');
update_option('image_default_align ', 'right');

it should be:

update_option('image_default_size', 'post_size');
update_option('image_default_align', 'right');