Platforms to show: All Mac Windows Linux Cross-Platform

Back to PictureMBS class.

Previous items Next items

PictureMBS.ImageFormatBofABGR = 19

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatBofABGR)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatBofARGB = 21

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatBofARGB)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatBofBGR = 15

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatBofBGR)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatBofBGRA = 18

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatBofBGRA)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatBofRGB = 17

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatBofRGB)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatBofRGBA = 20

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatBofRGBA)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatBuffer = 22

Type Topic Plugin Version
const Large Picture MBS Images Plugin 10.3
The image format for picture objects which are used for data storage.

This format is for PixelSize = 1 and no channels.

PictureMBS.ImageFormatCMYK = 23

Type Topic Plugin Version
const Large Picture MBS Images Plugin 11.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatCMYK)

PictureMBS.ImageFormatCMYKA = 24

Type Topic Plugin Version
const Large Picture MBS Images Plugin 11.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatCMYKA)

PictureMBS.ImageFormatCMYKX = 26

Type Topic Plugin Version
const Large Picture MBS Images Plugin 11.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatCMYKX)

PictureMBS.ImageFormatG = 11

Type Topic Plugin Version
const Large Picture MBS Images Plugin 8.7
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG)

PictureMBS.ImageFormatG1 = 11

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG1)

One gray channel.

PictureMBS.ImageFormatG2 = 42

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG2)

Two gray channels.

PictureMBS.ImageFormatG3 = 43

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG)

Three gray channels.

PictureMBS.ImageFormatG4 = 44

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG4)

Four gray channels.

PictureMBS.ImageFormatG5 = 45

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG5)

Five gray channels.

PictureMBS.ImageFormatG6 = 46

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG6)

Six gray channels.

PictureMBS.ImageFormatG7 = 47

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG7)

Seven gray channels.

PictureMBS.ImageFormatG8 = 48

Type Topic Plugin Version
const Large Picture MBS Images Plugin 20.2
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatG8)

Eight gray channels.

PictureMBS.ImageFormatGA = 12

Type Topic Plugin Version
const Large Picture MBS Images Plugin 8.7
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGA)

PictureMBS.ImageFormatGofABGR = 20

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGofABGR)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatGofARGB = 20

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
// create a grayscale picture with 4 bytes per pixel
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGofARGB)

// fill top left pixels white
p.FillRect(0,0,10,10,255)

Backdrop=p.CopyPicture
Title=str(p.PixelSize)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatGofBGR = 16

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGofBGR)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatGofBGRA = 19

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGofBGRA)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatGofRGB = 16

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGofRGB)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatGofRGBA = 19

Type Topic Plugin Version
const Large Picture MBS Images Plugin 9.1
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGofRGBA)

This is the imageformat to use if you target only a gray channel in a RGB picture in memory.

PictureMBS.ImageFormatGray16 = 41

Type Topic Plugin Version
const Large Picture MBS Images Plugin 14.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatGray16)

Support for 16bit Grayscale pictures is very limited.

With 14.0 plugins, we support for this format:

  • constructor to create empty new picture
  • Copy pixels from one gray to other gray image
  • Invert
  • Scale Gray16 to Gray16
  • RawRow and Row functions
  • Clip
  • Channel access
  • Clear
  • Clone
  • Copy picture

Everything else will probably not work or crash.

PictureMBS.ImageFormatKYMC = 28

Type Topic Plugin Version
const Large Picture MBS Images Plugin 11.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatKYMC)

PictureMBS.ImageFormatKYMCA = 29

Type Topic Plugin Version
const Large Picture MBS Images Plugin 11.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatKYMCA)

PictureMBS.ImageFormatKYMCX = 31

Type Topic Plugin Version
const Large Picture MBS Images Plugin 11.0
One of the possible image formats.
Example
dim p as new PictureMBS(100,100,PictureMBS.ImageFormatKYMCX)

Previous items Next items

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


💬 Ask a question or report a problem
The biggest plugin in space...