How to create additional thumbnails of custom size in nextgen gallery while uploading images? [closed]

Make shure your theme function have

add_theme_support( 'post-thumbnails' );

to add a custom image size use

add_image_size( 'thumb-one', 25, 30 );

for more details have a looh here