Skip to content

Instantly share code, notes, and snippets.

@mgng
Created March 19, 2012 01:29
Show Gist options
  • Save mgng/2089330 to your computer and use it in GitHub Desktop.
Save mgng/2089330 to your computer and use it in GitHub Desktop.
PHPを使ってgif画像にキルマンデーズのテーマを埋め込む
<?php
$str = "
ファック!ファック!ファックマンデー!キル!キル!キルマンデー!
ファック!ファック!ファックマンデー!キル!キル!キルマンデー!
月曜ころす ブルーマンデー
キルマンデー チープサラリー
ファック!ファック!ファックマンデー!キル!キル!キルマンデー!
ファック!ファック!ファックマンデー!キル!キル!キルマンデー!
アイムインレストルーム メイクニューシット
キルマンデーキル キルマンデーミーティング
(ギターソロ)
資本主義
(バケツいっぱいのミミズをばら撒くソロ)
(チェーンソーソロ)
(切腹ソロ)
(ストリップ)
ファック!ファック!ファックマンデー!キル!キル!キルマンデー!
ファック!ファック!ファックマンデー!キル!キル!キルマンデー!
ウィーアーキルマンデーズ
";
$im = imagecreatefromgif('./mgng.gif');
ob_start();
imagegif($im);
imagedestroy($im);
echo "\n" . mb_convert_encoding($str, 'SJIS-win', 'UTF-8');
$buf = ob_get_contents();
ob_end_clean();
file_put_contents('./mgng_kill.gif', $buf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment