IMagickLuminanceSource
extends LuminanceSourceAbstract
in package
This class is used to help decode images from files which arrive as Imagick Resource It does not support rotation.
Table of Contents
Properties
- $height : int
- $imagick : Imagick
- $luminances : array<string|int, mixed>
- $options : QROptions|SettingsContainerInterface
- $width : int
Methods
- __construct() : mixed
- IMagickLuminanceSource constructor.
- fromBlob() : self
- fromFile() : self
- getHeight() : int
- getLuminances() : array<string|int, mixed>
- Fetches luminance data for the underlying bitmap. Values should be fetched using: `int luminance = array[y * width + x] & 0xff`
- getRow() : array<string|int, mixed>
- Fetches one row of luminance data from the underlying platform's bitmap. Values range from 0 (black) to 255 (white). Because Java does not have an unsigned byte type, callers will have to bitwise and with 0xff for each value. It is preferable for implementations of this method to only fetch this row rather than the whole image, since no 2D Readers may be installed and getLuminances() may never be called.
- getWidth() : int
- checkFile() : string
- setLuminancePixel() : void
- setLuminancePixels() : void
Properties
$height
protected
int
$height
$imagick
protected
Imagick
$imagick
$luminances
protected
array<string|int, mixed>
$luminances
$options
protected
QROptions|SettingsContainerInterface
$options
$width
protected
int
$width
Methods
__construct()
IMagickLuminanceSource constructor.
public
__construct(Imagick $imagick[, SettingsContainerInterface $options = null ]) : mixed
Parameters
- $imagick : Imagick
- $options : SettingsContainerInterface = null
fromBlob()
public
static fromBlob(string $blob[, SettingsContainerInterface $options = null ]) : self
Parameters
- $blob : string
- $options : SettingsContainerInterface = null
Tags
Return values
selffromFile()
public
static fromFile(string $path[, SettingsContainerInterface $options = null ]) : self
Parameters
- $path : string
- $options : SettingsContainerInterface = null
Tags
Return values
selfgetHeight()
public
getHeight() : int
Tags
Return values
int —The height of the bitmap.
getLuminances()
Fetches luminance data for the underlying bitmap. Values should be fetched using: `int luminance = array[y * width + x] & 0xff`
public
getLuminances() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed> —A row-major 2D array of luminance values. Do not use result $length as it may be larger than $width * $height bytes on some platforms. Do not modify the contents of the result.
getRow()
Fetches one row of luminance data from the underlying platform's bitmap. Values range from 0 (black) to 255 (white). Because Java does not have an unsigned byte type, callers will have to bitwise and with 0xff for each value. It is preferable for implementations of this method to only fetch this row rather than the whole image, since no 2D Readers may be installed and getLuminances() may never be called.
public
getRow(int $y) : array<string|int, mixed>
Parameters
- $y : int
-
The row to fetch, which must be in [0,getHeight())
Tags
Return values
array<string|int, mixed> —An array containing the luminance data.
getWidth()
public
getWidth() : int
Tags
Return values
int —The width of the bitmap.
checkFile()
protected
static checkFile(string $path) : string
Parameters
- $path : string
Tags
Return values
stringsetLuminancePixel()
protected
setLuminancePixel(int $r, int $g, int $b) : void
Parameters
- $r : int
- $g : int
- $b : int
setLuminancePixels()
protected
setLuminancePixels() : void