Learn R Programming

IFC (version 0.1.2)

writeIFD: Image Field Directory Writer

Description

Writes Image Field Directory (IFD)

Usage

writeIFD(
  ifd,
  r_con,
  w_con,
  pos = 0,
  extra = NULL,
  endianness = .Platform$endian,
  ...
)

Arguments

ifd

an ifd extracted by cpp_fastTAGS

r_con

a connection opened for reading

w_con

a connection opened for writing

pos

current position within 'w_con'. Default is 0.

extra

extra entries to add to 'ifd'. Default is NULL

endianness

the desired endian-ness ("big" or "little"). Default is .Platform$endian. Endianness describes the bytes order of data stored within the files. This parameter may not be modified.

Value

the position within 'w_con' after 'IFD' and 'extra' content have been written