Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5IM_UNLINK_PALETTE

Dettaches a palette from an image.

H5IM_UNLINK_PALETTE(loc_id, image_name, pal_name)

herr_t H5IMunlink_palette( hid_t loc_id, const char *image_name, const char *pal_name )

subroutine h5imunlink_palette_f(loc_id, dset_name, pal_name, errcode)
  implicit none
  integer(HID_T), intent(IN) :: loc_id          ! file or group identifier 
  character(LEN=*), intent(IN) :: dset_name     ! name of the dataset 
  character(LEN=*), intent(IN) :: pal_name      ! palette name 
  integer :: errcode                            ! error code
end subroutine h5imunlink_palette_f

hid_t loc_idIN: Identifier of the file or group.
const char *image_name    IN: The name of the image dataset.
const char *pal_nameIN: The name of the palette.

H5IMunlink_palette dettaches a palette from an image specified by image_name.

Returns a non-negative value if successful; otherwise returns a negative value.

Coming Soon!

--- Last Modified: December 04, 2017 | 07:20 AM