GdPicture image identifier.
A member of the Tags enumeration.
Type of the tag to write. A member of the TagType enumeration.

Please ensure that you provide a correct type of the tag. For further assistance, please refer to the CIPA DC-008-2016: Exchangeable image file format for digital still cameras: Exif Version 2.31.

Array where the tag value data is stored.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / TagSetValueBytes Method

TagSetValueBytes Method (GdPictureImaging)

In This Topic
Writes a tag from data stored within an array of bytes.
Syntax
'Declaration
 
Public Function TagSetValueBytes( _
   ByVal ImageID As Integer, _
   ByVal TagID As Tags, _
   ByVal TagType As TagType, _
   ByVal Data() As Byte _
) As GdPictureStatus
public GdPictureStatus TagSetValueBytes( 
   int ImageID,
   Tags TagID,
   TagType TagType,
   byte[] Data
)
public function TagSetValueBytes( 
    ImageID: Integer;
    TagID: Tags;
    TagType: TagType;
    Data: Bytearray of
): GdPictureStatus; 
public function TagSetValueBytes( 
   ImageID : int,
   TagID : Tags,
   TagType : TagType,
   Data : byte[]
) : GdPictureStatus;
public: GdPictureStatus TagSetValueBytes( 
   int ImageID,
   Tags TagID,
   TagType TagType,
   byte[]* Data
) 
public:
GdPictureStatus TagSetValueBytes( 
   int ImageID,
   Tags TagID,
   TagType TagType,
   array<byte>^ Data
) 

Parameters

ImageID
GdPicture image identifier.
TagID
A member of the Tags enumeration.
TagType
Type of the tag to write. A member of the TagType enumeration.

Please ensure that you provide a correct type of the tag. For further assistance, please refer to the CIPA DC-008-2016: Exchangeable image file format for digital still cameras: Exif Version 2.31.

Data
Array where the tag value data is stored.

Return Value

A member of the GdPictureStatus enumeration.
See Also