SetaPDF_Core_Image_Jpeg2000 Class representing an JPEG2000 image

File: /SetaPDF v2/Core/Image/Jpeg2000.php

Class hierarchy

Summary

Constants

TYPE_GIF

public const string SetaPDF_Core_Image::TYPE_GIF = 'gif'

Image type

TYPE_JPEG

public const string SetaPDF_Core_Image::TYPE_JPEG = 'jpeg'

Image type

TYPE_JPEG2000

public const string SetaPDF_Core_Image::TYPE_JPEG2000 = 'jpeg2000'

Image type

TYPE_PNG

public const string SetaPDF_Core_Image::TYPE_PNG = 'png'

Image type

TYPE_TIFF

public const string SetaPDF_Core_Image::TYPE_TIFF = 'tiff'

Image type

TYPE_UNKNOWN

public const string SetaPDF_Core_Image::TYPE_UNKNOWN = 'unknown'

Image type


Properties

$_binaryReader

$_bitsPerComponent

protected integer SetaPDF_Core_Image::$_bitsPerComponent = 8

Bits per component

$_colorSpace

protected integer SetaPDF_Core_Image::$_colorSpace = -1

The image type specific colorspace

$_dpiX

protected integer SetaPDF_Core_Image::$_dpiX = 0

Dots-per-inch in the X direction

$_dpiY

protected integer SetaPDF_Core_Image::$_dpiY = 0

Dots-per-inch in the Y direction

$_height

protected integer SetaPDF_Core_Image::$_height

The pixel height

$_inverted

protected boolean SetaPDF_Core_Image::$_inverted = false

Flag for color inversion

$_opacityAvailable

Whether opacity is availbel or not.

$_width

protected integer SetaPDF_Core_Image::$_width

The pixel width


Static Methods

get()

Get an image by a reader.

Parameters
$reader : SetaPDF_Core_Reader_ReaderInterface

The reader instance

Exceptions

Throws SetaPDF_Exception_NotImplemented If the image type is not supported (supported types: JPEG, PNG, JPEG2000).

getByPath()

public static SetaPDF_Core_Image::getByPath (
string $path
): SetaPDF_Core_Image

Get an image by a path.

Parameters
$path : string

The path to the image

getType()

Get an image type by a reader.

Parameters
$reader : SetaPDF_Core_Reader_ReaderInterface
 

Methods

__construct()

The constructor.

Parameters
$reader : SetaPDF_Core_Reader_ReaderInterface
 

_process()

_readBoxHeader()

protected SetaPDF_Core_Image_Jpeg2000::_readBoxHeader (
mixed &$boxLength, mixed &$boxType
): void

Reads the header information for the following box.

Parameters
$boxLength : mixed

The BoxLength will be written in this variable.

$boxType : mixed

The BoxType will be written in this variable.

Exceptions

Throws SetaPDF_Exception_NotImplemented

getBitsPerComponent()

public SetaPDF_Core_Image::getBitsPerComponent (
void
): integer

Get the bits per component value.

getColorSpace()

public SetaPDF_Core_Image::getColorSpace (
void
): number

Get the image type specific colorspace.

getDpiX()

public SetaPDF_Core_Image::getDpiX (
void
): number

Get the dots-per-inch in the X direction.

getDpiY()

public SetaPDF_Core_Image::getDpiY (
void
): number

Get the dots-per-inch in the Y direction.

getHeight()

public SetaPDF_Core_Image::getHeight (
[ float $width = null ]
): number

Get the height.

Parameters
$width : float

Value for keeping the aspect ratio

getWidth()

public SetaPDF_Core_Image::getWidth (
[ float $height = null ]
): number

Get the width.

Parameters
$height : float

Value for keeping the aspect ratio

toXObject()

Converts the JPEG 2000 image to an external object.

Parameters
$document : SetaPDF_Core_Document
 
See