Platforms to show: All Mac Windows Linux Cross-Platform

Back to GM16ImageMBS class.

Previous items

GM16ImageMBS.unsharpmask(radius as Double, sigma as Double, amount as Double, threshold as Double)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Replace image with a sharpened version of the original image using the unsharp mask algorithm.
Example
Var p as Picture = LogoMBS(500)
Var image as new GM16ImageMBS(p)

image.unsharpmask(10,1,0.5,50)

Backdrop=image.CopyPicture

radius: the radius of the Gaussian, in pixels, not counting the center pixel.
sigma: the standard deviation of the Gaussian, in pixels.
amount: the percentage of the difference between the original and the blur image that is added back into the original.
threshold: the threshold in pixels needed to apply the diffence amount.

GM16ImageMBS.unsharpmaskChannel(channel as Integer, radius as Double, sigma as Double, amount as Double, threshold as Double)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Replace image channel with a sharpened version of the original image using the unsharp mask algorithm.
Example
Var p as Picture = LogoMBS(500)
Var image as new GM16ImageMBS(p)

image.unsharpmaskChannel(Image.RedChannel, 10,1,0.5,50)

Backdrop=image.CopyPicture

channel:image channel to modify.
radius:the radius of the Gaussian, in pixels, not counting the center pixel.
sigma:the standard deviation of the Gaussian, in pixels.
amount:the percentage of the difference between the original and the blur image that is added back into the original.
threshold:the threshold in pixels needed to apply the diffence amount.

GM16ImageMBS.wave(amplitude as Double=25.0, wavelength as Double=150.0)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Map image pixels to a sine wave.
Example
Var p as Picture = LogoMBS(500)
Var image as new GM16ImageMBS(p)

image.wave

Backdrop=image.CopyPicture

GM16ImageMBS.write(blob as GM16BlobMBS, magick as string)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Write single image frame to in-memory Blob, with optional format and adjoin parameters.

See also:

GM16ImageMBS.write(blob as GM16BlobMBS, magick as string, depth as UInt32)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Write single image frame to in-memory Blob, with optional format and adjoin parameters.

See also:

GM16ImageMBS.write(file as folderitem)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Write single image frame to a file.
Example
// this converts 32 bit PNG with alpha channel to BMP

Var f as FolderItem = SpecialFolder.Desktop.Child("test.png")
Var p as Picture = Picture.Open(f)

Var g as new GM16ImageMBS( new GM16GeometryMBS(p.Width, p.Height), new GM16ColorGrayMBS(1.0))

g.type = g.TrueColorMatteType
g.matte = True
g.magick = "BMP"

g.SetPicture(p, 0, 0)
g.SetPictureMask(p.mask.invertMBS, 0, 0)

f = SpecialFolder.Desktop.Child("test.bmp")
g.write(f)

See also:

GM16ImageMBS.write(Path as string)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Write single image frame to a file.
Example
// export a picture as PCL
Var l As Picture = LogoMBS(500)
Var p As New GM16ImageMBS(l)

p.type = p.BilevelType
p.write("/tmp/print.pcl")

See also:

GM16ImageMBS.write(x as Integer, y as Integer, columns as Integer, rows as Integer, map as string, type as Integer, Pixels as Ptr)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 16.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Write single image frame to an array of pixels with storage type specified by user (DispatchImage).

e.g. image.write( 0, 0, 640, 1, "RGB", 0, pixels )

See also:

GM16ImageMBS.zoom(geometry as GM16GeometryMBS)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 14.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Zoom (resize) image to specified size.
Example
Var p as Picture = LogoMBS(500)
Var image as new GM16ImageMBS(p)

image.zoom(new GM16GeometryMBS(200,200))

Backdrop=image.CopyPicture

GM16ImageMBS.ZPL(Header as boolean = true) as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
method GraphicsMagick MBS GraphicsMagick Plugin 20.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Queries image as ZPL hex image.

This is for sending data to a receipt printer. The picture is taken as black & white image and we build the hex string, you can send to the printer.
Picture needs to have a width dividable by 8.

Set Header to false for skipping header and footer.

Previous items

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


The biggest plugin in space...