ImageSVG

SVG(Scalable Vector Graphics)イメージを埋め込む。

注意:SVGにはまだ完全に対応しているわけではありません。ImageMagickライブラリを使用して、setRastersizeVectorImage()メソッドでラスタライズするかどうかを指定します。

メソッド public
実装 5.0.000 (2010-05-02)
書式
ImageSVG( $file, $x, $y, $w, $h, $link, $align, $palign, $border, $fitonpage )
戻り値

(なし)

要素
  • T: top-right for LTR or top-left for RTL
  • M: middle-right for LTR or middle-left for RTL
  • B: bottom-right for LTR or bottom-left for RTL
  • N: next line
  • If the alignment is an empty string, then the pointer will be restored on the starting SVG position. >
    string $file

    SVGファイル名または、「@」から始まるSVGデータ文字列

    float $x '' 上部左端のX座標
    float $y '' 上部左端のY座標
    float $w 0

    ページ内における幅。 指定されないかゼロの場合、自動的に計算されます。

    float $h 0

    ページ内における高さ。 指定されないかゼロの場合、自動的に計算されます。

    mixed $link '' URL or identifier returned by AddLink().
    string $align ''
    string $palign '' Allows to center or align the image on the current line. Possible values are:
    • L : left align
    • C : center
    • R : right align
    • '' : empty string : left for LTR or right for RTL
    mixed $border 0 Indicates if borders must be drawn around the cell. The value can be a number:
    • 0: no border (default)
    • 1: frame
    or a string containing some or all of the following characters (in any order):
    • L: left
    • T: top
    • R: right
    • B: bottom
    or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
    boolean $fitonpage false if true the image is resized to not exceed page dimensions.