Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CakePHP で画像を生成するにはどうすればよいですか? 禁煙サイトを作りたいのですが、吸っていない「何箱」「何本」の画像を生成できるようにしたいです。
ありがとう
app\webroot\imgイメージをディレクトリ にコピーします
app\webroot\img
cigarette.png例:ファイルがディレクトリにあると仮定しますapp\webroot\img。次のように、ビュー ファイルでそのイメージをレンダリングできます。 次に、ビューファイルに次のコードを追加して画像を表示できます。 <?php echo $this->Html->image('cigarette.png'); ?>
cigarette.png
<?php echo $this->Html->image('cigarette.png'); ?>
この画像を複数回表示したい場合は、必要なだけコピーして貼り付けてください。