LoginSignup
0
0

More than 5 years have passed since last update.

インラインイメージに変換するXOOPS用Smarty修飾子 inline_image

Posted at

コードはGistにあげてあります

使い方

たぶんテーマだと元はこんな記述

<img src="<{$xoops_imageurl}>images/logo.png"/>

このURL全体をinline_iamgeモディファイアに渡したいので cat モディファイアでつないでからinlie_iamgeモディファイアへ渡すと下記みたいな感じに。

<img src="<{$xoops_imageurl|cat:'images/logo.png'|inline_image}>"/>

そうすると出力は

<img src="data:image/png; charset=binary;base64,iVBORw0KGgoAAAANSUhEU...(中略)" />

ってなります。

使い処少ないとは思うけどちょっと必要になったもんで作っちゃいました(^^;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0