如何使用PHP从flickr和picasa视频中提取缩略图?

时间:2012-05-23 05:40:15

标签: php cakephp flickr picasa

如何使用php

从flickr和picasa视频中提取缩略图

请任何人帮助我......

1 个答案:

答案 0 :(得分:1)

假设您可以在浏览器中看到图像。 因此,首先,您需要将链接包含在图像的URL中。

要实现这一点,您应该简单地分析已查看页面的内容并执行这样的规则表达式匹配;

<?php

ob_start();

$content = ob_get_contents();

    function find_all_img_url_in_cur_page(){
      global $content;

      $result = array();

      if ( preg_match('/jpg/i', $content) ){
         //find postion and add into array
       }
      return $result;
    }

    find_all_img_url_in_cur_page();

    ob_end_clean();
    ?>

然后你需要复制/打开你正在处理的这个IMG文件(使用通常与php捆绑在一起的标准GD库)。

谷歌“图像调整大小与PHP”,所以你得到你想要的