Get Attachment Image Class by attachment id

If this is a regular custom field, use get_post_meta():

$classes = get_post_meta( $attachment_id, 'name_of_the_field', TRUE );

attachment is just another post type, regarding to meta data, it works like regular posts or pages.