init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer;
|
||||
|
||||
class BstoreContainer
|
||||
{
|
||||
/**
|
||||
* BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture).
|
||||
*
|
||||
* @var BstoreContainer\BSE[]
|
||||
*/
|
||||
private array $BSECollection = [];
|
||||
|
||||
/**
|
||||
* Add a BLIP Store Entry.
|
||||
*/
|
||||
public function addBSE(BstoreContainer\BSE $BSE): void
|
||||
{
|
||||
$this->BSECollection[] = $BSE;
|
||||
$BSE->setParent($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the collection of BLIP Store Entries.
|
||||
*
|
||||
* @return BstoreContainer\BSE[]
|
||||
*/
|
||||
public function getBSECollection(): array
|
||||
{
|
||||
return $this->BSECollection;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer;
|
||||
|
||||
use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer;
|
||||
|
||||
class BSE
|
||||
{
|
||||
const BLIPTYPE_ERROR = 0x00;
|
||||
const BLIPTYPE_UNKNOWN = 0x01;
|
||||
const BLIPTYPE_EMF = 0x02;
|
||||
const BLIPTYPE_WMF = 0x03;
|
||||
const BLIPTYPE_PICT = 0x04;
|
||||
const BLIPTYPE_JPEG = 0x05;
|
||||
const BLIPTYPE_PNG = 0x06;
|
||||
const BLIPTYPE_DIB = 0x07;
|
||||
const BLIPTYPE_TIFF = 0x11;
|
||||
const BLIPTYPE_CMYKJPEG = 0x12;
|
||||
|
||||
/**
|
||||
* The parent BLIP Store Entry Container.
|
||||
* Property is never currently read.
|
||||
*/
|
||||
private BstoreContainer $parent; // @phpstan-ignore-line
|
||||
|
||||
/**
|
||||
* The BLIP (Big Large Image or Picture).
|
||||
*
|
||||
* @var ?BSE\Blip
|
||||
*/
|
||||
private ?BSE\Blip $blip = null;
|
||||
|
||||
/**
|
||||
* The BLIP type.
|
||||
*/
|
||||
private int $blipType;
|
||||
|
||||
/**
|
||||
* Set parent BLIP Store Entry Container.
|
||||
*/
|
||||
public function setParent(BstoreContainer $parent): void
|
||||
{
|
||||
$this->parent = $parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the BLIP.
|
||||
*/
|
||||
public function getBlip(): ?BSE\Blip
|
||||
{
|
||||
return $this->blip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the BLIP.
|
||||
*/
|
||||
public function setBlip(BSE\Blip $blip): void
|
||||
{
|
||||
$this->blip = $blip;
|
||||
$blip->setParent($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the BLIP type.
|
||||
*/
|
||||
public function getBlipType(): int
|
||||
{
|
||||
return $this->blipType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the BLIP type.
|
||||
*/
|
||||
public function setBlipType(int $blipType): void
|
||||
{
|
||||
$this->blipType = $blipType;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE;
|
||||
|
||||
use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE;
|
||||
|
||||
class Blip
|
||||
{
|
||||
/**
|
||||
* The parent BSE.
|
||||
*/
|
||||
private BSE $parent;
|
||||
|
||||
/**
|
||||
* Raw image data.
|
||||
*/
|
||||
private string $data;
|
||||
|
||||
/**
|
||||
* Get the raw image data.
|
||||
*/
|
||||
public function getData(): string
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the raw image data.
|
||||
*/
|
||||
public function setData(string $data): void
|
||||
{
|
||||
$this->data = $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set parent BSE.
|
||||
*/
|
||||
public function setParent(BSE $parent): void
|
||||
{
|
||||
$this->parent = $parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get parent BSE.
|
||||
*/
|
||||
public function getParent(): BSE
|
||||
{
|
||||
return $this->parent;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue