作詞︰kajiura yuki
作曲︰kajiura yuki
 






BJStation 發表在 痞客邦 留言(1) 人氣()

作詞/作曲/编曲:梶浦由纪 
演唱:貝田由里子 






BJStation 發表在 痞客邦 留言(0) 人氣()

作詞.作曲:梶浦由記 編曲:坂本昌之 
コーラスアレンジ:梶浦由記 歌:引田香織
 






BJStation 發表在 痞客邦 留言(5) 人氣()

[下載檔案]
http://www.mediawiki.org/wiki/MediaWiki/zh-hant
我下載的是中文板 1.15.3
[安裝設定]

BJStation 發表在 痞客邦 留言(0) 人氣()

ffmpeg.png
1. 先下載 ffmpeg 64位元的安裝檔
wget http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm 
 

BJStation 發表在 痞客邦 留言(1) 人氣()

今天我老大有感而發,
突然從座位站起來發表了這個理論,覺得好像也滿對的~
"同樣一件事,男人會問為什麼? 而女人會問怎麼了嗎?"
男人在意因果緣由~
而女人比較在意感受~

BJStation 發表在 痞客邦 留言(1) 人氣()


<?php
/*
* File: SimpleImage.php
* Author: Simon Jarvis
* Copyright: 2006 Simon Jarvis
* Date: 08/11/06
* Link: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php

* This program is free software; you can redistribute it and/or 
* modify it under the terms of the GNU General Public License 
* as published by the Free Software Foundation; either version 2 
* of the License, or (at your option) any later version.

* This program is distributed in the hope that it will be useful, 
* but WITHOUT ANY WARRANTY; without even the implied warranty of 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
* GNU General Public License for more details: 
* http://www.gnu.org/licenses/gpl.html
*
*/
 
class SimpleImage {
   
   var $image;
   var $image_type;
 
   function load($filename) {
      $image_info = getimagesize($filename);
      $this->image_type = $image_info[2];
      if( $this->image_type == IMAGETYPE_JPEG ) {
         $this->image = imagecreatefromjpeg($filename);
      } elseif( $this->image_type == IMAGETYPE_GIF ) {
         $this->image = imagecreatefromgif($filename);
      } elseif( $this->image_type == IMAGETYPE_PNG ) {
         $this->image = imagecreatefrompng($filename);
      }
   }
   function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {
      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image,$filename,$compression);
      } elseif( $image_type == IMAGETYPE_GIF ) {
         imagegif($this->image,$filename);         
      } elseif( $image_type == IMAGETYPE_PNG ) {
         imagepng($this->image,$filename);
      }   
      if( $permissions != null) {
         chmod($filename,$permissions);
      }
   }
   function output($image_type=IMAGETYPE_JPEG) {
      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image);
      } elseif( $image_type == IMAGETYPE_GIF ) {
         imagegif($this->image);         
      } elseif( $image_type == IMAGETYPE_PNG ) {
         imagepng($this->image);
      }   
   }
   function getWidth() {
      return imagesx($this->image);
   }
   function getHeight() {
      return imagesy($this->image);
   }
   function resizeToHeight($height) {
      $ratio = $height / $this->getHeight();
      $width = $this->getWidth() * $ratio;
      $this->resize($width,$height);
   }
   function resizeToWidth($width) {
      $ratio = $width / $this->getWidth();
      $height = $this->getheight() * $ratio;
      $this->resize($width,$height);
   }
   function scale($scale) {
      $width = $this->getWidth() * $scale/100;
      $height = $this->getheight() * $scale/100; 
      $this->resize($width,$height);
   }
   function resize($width,$height) {
      $new_image = imagecreatetruecolor($width, $height);
      imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
      $this->image = $new_image;   
   }      
}
?>

BJStation 發表在 痞客邦 留言(1) 人氣()

作詞:梶浦由記
作曲:梶浦由記
演唱:Kalafina





BJStation 發表在 痞客邦 留言(1) 人氣()

kalafina
 
終於等到這一天了啦!!!
等我回來再跟大家分享囉~~~

BJStation 發表在 痞客邦 留言(0) 人氣()

作曲:梶浦由記 / 作詞:梶浦由記




 

BJStation 發表在 痞客邦 留言(0) 人氣()

Fmaj7
作詞、作曲、編曲: 梶浦由紀




 

BJStation 發表在 痞客邦 留言(0) 人氣()

[jQuery 定義事件]
.bind(event, handler)
.change(handler)
.click(handler)

BJStation 發表在 痞客邦 留言(0) 人氣()

Blog Stats
⚠️

成人內容提醒

本部落格內容僅限年滿十八歲者瀏覽。
若您未滿十八歲,請立即離開。

已滿十八歲者,亦請勿將內容提供給未成年人士。