ILIAS
eassessment Revision 61809
|
Public Member Functions | |
__construct () | |
Create a new PHPExcel_Worksheet_MemoryDrawing. | |
getImageResource () | |
Get image resource. | |
setImageResource ($value=null) | |
Set image resource. | |
getRenderingFunction () | |
Get rendering function. | |
setRenderingFunction ($value=PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT) | |
Set rendering function. | |
getMimeType () | |
Get mime type. | |
setMimeType ($value=PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT) | |
Set mime type. | |
getIndexedFilename () | |
Get indexed filename (using image index) | |
getHashCode () | |
Get hash code. | |
__clone () | |
Implement PHP __clone to create a deep clone, not just a shallow copy. | |
Public Member Functions inherited from PHPExcel_Worksheet_BaseDrawing | |
getImageIndex () | |
Get image index. | |
getName () | |
Get Name. | |
setName ($pValue= '') | |
Set Name. | |
getDescription () | |
Get Description. | |
setDescription ($pValue= '') | |
Set Description. | |
getWorksheet () | |
Get Worksheet. | |
setWorksheet (PHPExcel_Worksheet $pValue=null, $pOverrideOld=false) | |
Set Worksheet. | |
getCoordinates () | |
Get Coordinates. | |
setCoordinates ($pValue= 'A1') | |
Set Coordinates. | |
getOffsetX () | |
Get OffsetX. | |
setOffsetX ($pValue=0) | |
Set OffsetX. | |
getOffsetY () | |
Get OffsetY. | |
setOffsetY ($pValue=0) | |
Set OffsetY. | |
getWidth () | |
Get Width. | |
setWidth ($pValue=0) | |
Set Width. | |
getHeight () | |
Get Height. | |
setHeight ($pValue=0) | |
Set Height. | |
setWidthAndHeight ($width=0, $height=0) | |
Set width and height with proportional resize Example: $objDrawing->setResizeProportional(true); $objDrawing->setWidthAndHeight(160,120); | |
getResizeProportional () | |
Get ResizeProportional. | |
setResizeProportional ($pValue=true) | |
Set ResizeProportional. | |
getRotation () | |
Get Rotation. | |
setRotation ($pValue=0) | |
Set Rotation. | |
getShadow () | |
Get Shadow. | |
setShadow (PHPExcel_Worksheet_Drawing_Shadow $pValue=null) | |
Set Shadow. |
Data Fields | |
const | RENDERING_DEFAULT = 'imagepng' |
const | RENDERING_PNG = 'imagepng' |
const | RENDERING_GIF = 'imagegif' |
const | RENDERING_JPEG = 'imagejpeg' |
const | MIMETYPE_DEFAULT = 'image/png' |
const | MIMETYPE_PNG = 'image/png' |
const | MIMETYPE_GIF = 'image/gif' |
const | MIMETYPE_JPEG = 'image/jpeg' |
Private Attributes | |
$_imageResource | |
$_renderingFunction | |
$_mimeType | |
$_uniqueName |
Additional Inherited Members | |
Protected Attributes inherited from PHPExcel_Worksheet_BaseDrawing | |
$_name | |
$_description | |
$_worksheet | |
$_coordinates | |
$_offsetX | |
$_offsetY | |
$_width | |
$_height | |
$_resizeProportional | |
$_rotation | |
$_shadow |
Definition at line 36 of file MemoryDrawing.php.
PHPExcel_Worksheet_MemoryDrawing::__construct | ( | ) |
Create a new PHPExcel_Worksheet_MemoryDrawing.
Reimplemented from PHPExcel_Worksheet_BaseDrawing.
Definition at line 81 of file MemoryDrawing.php.
References MIMETYPE_DEFAULT, and RENDERING_DEFAULT.
PHPExcel_Worksheet_MemoryDrawing::__clone | ( | ) |
Implement PHP __clone to create a deep clone, not just a shallow copy.
Reimplemented from PHPExcel_Worksheet_BaseDrawing.
Definition at line 190 of file MemoryDrawing.php.
PHPExcel_Worksheet_MemoryDrawing::getHashCode | ( | ) |
Get hash code.
Implements PHPExcel_IComparable.
Definition at line 177 of file MemoryDrawing.php.
PHPExcel_Worksheet_MemoryDrawing::getImageResource | ( | ) |
Get image resource.
Definition at line 98 of file MemoryDrawing.php.
References $_imageResource.
PHPExcel_Worksheet_MemoryDrawing::getIndexedFilename | ( | ) |
Get indexed filename (using image index)
Definition at line 164 of file MemoryDrawing.php.
References PHPExcel_Worksheet_BaseDrawing\getImageIndex(), and getMimeType().
PHPExcel_Worksheet_MemoryDrawing::getMimeType | ( | ) |
Get mime type.
Definition at line 144 of file MemoryDrawing.php.
References $_mimeType.
Referenced by getIndexedFilename().
PHPExcel_Worksheet_MemoryDrawing::getRenderingFunction | ( | ) |
Get rendering function.
Definition at line 124 of file MemoryDrawing.php.
References $_renderingFunction.
PHPExcel_Worksheet_MemoryDrawing::setImageResource | ( | $value = null | ) |
Set image resource.
$value | resource |
Definition at line 108 of file MemoryDrawing.php.
PHPExcel_Worksheet_MemoryDrawing::setMimeType | ( | $value = PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT | ) |
Set mime type.
string | $value |
Definition at line 154 of file MemoryDrawing.php.
PHPExcel_Worksheet_MemoryDrawing::setRenderingFunction | ( | $value = PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT | ) |
Set rendering function.
string | $value |
Definition at line 134 of file MemoryDrawing.php.
|
private |
Definition at line 55 of file MemoryDrawing.php.
Referenced by getImageResource().
|
private |
Definition at line 69 of file MemoryDrawing.php.
Referenced by getMimeType().
|
private |
Definition at line 62 of file MemoryDrawing.php.
Referenced by getRenderingFunction().
|
private |
Definition at line 76 of file MemoryDrawing.php.
const PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT = 'image/png' |
Definition at line 45 of file MemoryDrawing.php.
Referenced by __construct().
const PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_GIF = 'image/gif' |
Definition at line 47 of file MemoryDrawing.php.
const PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_JPEG = 'image/jpeg' |
Definition at line 48 of file MemoryDrawing.php.
Referenced by PHPExcel_Reader_Excel5\load().
const PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_PNG = 'image/png' |
Definition at line 46 of file MemoryDrawing.php.
Referenced by PHPExcel_Reader_Excel5\load().
const PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT = 'imagepng' |
Definition at line 39 of file MemoryDrawing.php.
Referenced by __construct(), and PHPExcel_Writer_Excel5\_buildWorkbookEscher().
const PHPExcel_Worksheet_MemoryDrawing::RENDERING_GIF = 'imagegif' |
Definition at line 41 of file MemoryDrawing.php.
Referenced by PHPExcel_Writer_Excel5\_buildWorkbookEscher().
const PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG = 'imagejpeg' |
Definition at line 42 of file MemoryDrawing.php.
Referenced by PHPExcel_Writer_Excel5\_buildWorkbookEscher(), and PHPExcel_Reader_Excel5\load().
const PHPExcel_Worksheet_MemoryDrawing::RENDERING_PNG = 'imagepng' |
Definition at line 40 of file MemoryDrawing.php.
Referenced by PHPExcel_Writer_Excel5\_buildWorkbookEscher(), and PHPExcel_Reader_Excel5\load().