JPEGImporterMarkerMBS properties

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

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.


💬 Ask a question or report a problem