Platforms to show: All Mac Windows Linux Cross-Platform

Back to JPEGImporterMarkerMBS class.

JPEGImporterMarkerMBS.Data as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property JPEG MBS Images Plugin 6.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The actual data read as a binary string.
Example
dim j as JPEGImporterMBS
dim f as FolderItem

f=SpecialFolder.Desktop.Child("test.jpg")
j=new JPEGImporterMBS

j.ReadMarkers=true // needed to fill ExifData property

// do the import

dim data as string = j.MarkerItem(0).Data

// work with data

(Read and Write property)

JPEGImporterMarkerMBS.DataLength as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property JPEG MBS Images Plugin 6.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The data length in bytes of the data string.
Example
dim j as JPEGImporterMBS
dim f as FolderItem

f=SpecialFolder.Desktop.Child("test.jpg")
j=new JPEGImporterMBS

j.ReadMarkers=true // needed to fill ExifData property

// do the import

MsgBox str(j.MarkerItem(0).DataLength)

// work with data

(Read and Write property)

JPEGImporterMarkerMBS.Marker as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property JPEG MBS Images Plugin 6.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The type of this datablock.
Example
dim j as JPEGImporterMBS
dim f as folderitem

f=SpecialFolder.Desktop.Child("test.jpg")
j=new JPEGImporterMBS

j.ReadMarkers=true // needed to fill ExifData property

// do the import

MsgBox str(j.MarkerItem(0).Marker)

// work with data

For example &hE0 for the first user defined block.
(Read and Write property)

JPEGImporterMarkerMBS.OriginalLength as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property JPEG MBS Images Plugin 6.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The original data length in the file.
Example
dim j as JPEGImporterMBS
dim f as FolderItem

f=SpecialFolder.Desktop.Child("test.jpg")
j=new JPEGImporterMBS

j.ReadMarkers=true // needed to fill ExifData property

// do the import

MsgBox str(j.MarkerItem(0).OriginalLength)

// work with data

Maybe smaller than datalength because of compression.
(Read and Write property)

The items on this page are in the following plugins: MBS Images Plugin.


The biggest plugin in space...