Hi Mohammad,
You can do that with this code:
// Add
$your_images_ids = [1,2,3];
foreach ( $your_images_ids as $image_id ) {
add_post_meta( $post_id, $field_id, $image_id, false ); // Notice the last parameter.
}
// Delete
delete_post_meta( $post_id, $field_id, $image_id );