Worksheet::mergeCells (Previous) (Next) Worksheet::setOutline

View this page in Last updated: Sun, 24 Aug 2008
English | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Plain HTML

Worksheet::insertBitmap

Worksheet::insertBitmap -- 24 ビットのビットマップ画像をワークシートに挿入する

説明

24 ビットのビットマップ画像をワークシートに挿入します。主な必須レコードは IMDATA ですが、その前に、位置を決定するための OBJ レコードが必要です。

パラメータ

  • integer $row - ビットマップを挿入する行。

  • integer $col - ビットマップを挿入する列。

  • string $bitmap - ビットマップファイル名。

  • integer $x - セル内での画像の横位置 (オフセット)。

  • integer $y - セル内での画像の縦位置 (オフセット)。

  • integer $scale_x - 横方向の拡大率。

  • integer $scale_y - 縦方向の拡大率。

注意

この関数は、スタティックにコールする ことはできません。

Worksheet::mergeCells (Previous) (Next) Worksheet::setOutline

Download Documentation Last updated: Sun, 24 Aug 2008
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
Note by: hoze
if u want to place a image to (0,0) for example, and u want to set width and height of the rows and columns around the image with setRow and setColumn, don't use setColumn on the same row:

$worksheet->setRow(0,70);
$worksheet->setColumn(0,0,50); // row 0 col 0
$worksheet->setColumn(0,1,50); // row 0 col 1
with this the image get scaled.
try:
$worksheet->setRow(0,70);
$worksheet->setColumn(0,0,50); // row 0 col 0
$worksheet->setColumn(1,1,50); // row 1 col 1 <-- setting row1 and col1 (instead of row0 col1)

with that usage, i used:
$worksheet->insertBitmap(0, 0, "path_to_img/image", 0, 0, 1, 1);
not (...1.25,1) and the image is not scaled.

hope this helps.
Note by: grodrigu@uci.edu
I found this from somewhere else which proved to be helpful

/* ************** Important - do this AFTER all column widths and merges! ************/

$logo = "/home/username/public_html/images/image_name.bmp";

// Insert Logo into Top Left corner of worksheet
$worksheet->insertBitmap(0, 0, $logo, 0, 0, 1.25, 1);
// 1.25 adjusts for problems with display size
/************************************************** **************************/