2012-02-08 20 views
0

私はギャラリーがあるウェブサイトを持っています。このギャラリーには、クリックするとリンクバックスの広告に行くことができる親指があります。そして5秒間待ってから、実際の大きさの画像を見ることができます。問題は、マウスの右ボタンでサムをクリックしてから、「写真を表示」を選択するなどして、この広告をスキップできることです。 画像ごとにサム画像ファイルを作成しなくても、これをどのように解決できますか?画像ごとにサムファイルを作成する必要がありますか?

注:Javascript/Jqueryまたは/およびPHPにこのソリューションが必要です。

答えて

2

サムネイルを作成しない限り、決して止めることはできません。ユーザーがJavaScriptを無効にしている場合でも、画像をダウンロードできます。 PHPはサーバサイド言語であり、ブラウザに画像を配信する必要があるため、PHPは画像のダウンロードを停止できません。

3

できません。

フルイメージを既に配信している場合は、にはフルイメージが既にあります。ゲームオーバー。

サムネイルを作成します。

3

実際に画像ごとにサムネイルを作成する必要があることがわかります。他の方法はありません。

ただし、手動で行う必要はありません。PHPはイメージファイルのサイズを変更できるため、サムネイルを動的に生成できます。 this oneのようなチュートリアルを探します。

2

イメージのサムネイルを作成する必要があります。以下のような簡単なPHP関数を使うことができます。

/** 
    * Create new thumb images using the source image 
    * 
    * @param string $source - Image source 
    * @param string $destination - Image destination 
    * @param integer $thumbW - Width for the new image 
    * @param integer $thumbH - Height for the new image 
    * @param string $imageType - Type of the image 
    * 
    * @return bool 
    */ 
    function creatThumbImage($source, $destination, $thumbW, $thumbH, $imageType) 
    { 
     list($width, $height, $type, $attr) = getimagesize($source); 
     $x = 0; 
     $y = 0; 
     if ($width*$thumbH>$height*$thumbW) { 
      $x = ceil(($width - $height*$thumbW/$thumbH)/2); 
      $width = $height*$thumbW/$thumbH; 
     } else { 
      $y = ceil(($height - $width*$thumbH/$thumbW)/2); 
      $height = $width*$thumbH/$thumbW; 
     } 

     $newImage = imagecreatetruecolor($thumbW, $thumbH) or die ('Can not use GD'); 

     switch($imageType) { 
      case "image/gif": 
       $image = imagecreatefromgif($source); 
       break; 
      case "image/pjpeg": 
      case "image/jpeg": 
      case "image/jpg": 
       $image = imagecreatefromjpeg($source); 
       break; 
      case "image/png": 
      case "image/x-png": 
       $image = imagecreatefrompng($source); 
       break; 
     } 

     if ([email protected]($newImage, $image, 0, 0, $x, $y, $thumbW, $thumbH, $width, $height)) { 
      return false; 
     } else { 
      imagejpeg($newImage, $destination,100); 
      imagedestroy($image); 
      return true; 
     } 
    } 
関連する問題