从 Google+ 下载整张专辑?

从 Google+ 下载整张专辑?

有没有什么软件可以下载公开分享的 Google+ 相册的所有全尺寸图片?

答案1

正如@vurdalakov所建议的

使用此工具: http://code.google.com/p/gpalbum/
并且通过 wget 的实现可以在几秒钟内获取文件。

Download, unzip, and run the gpalbum program    
Visit the album and copy the url out of the address bar    
Paste the url into gpalbum    
Click "Get Image URLs"    
Click "Copy Image URLs to clipboard    
Paste URLs into any text editor    
replace all "https" with "wget https"    
Save it as a batch file    
Run    

现在所有图像都已本地下载,我已经寻找这个有一段时间了,刚刚尝试了一下,效果非常棒。

仅供参考每一行看起来都像这样

wget https://lh5.googleusercontent.com/FULLIMAGEPATH.jpg

用于测试的具体版本是 1.00(更新:也测试了 1.03)。

答案2

在 bash shell(例如 Linux 终端)中使用以下命令:

(复制并粘贴专辑网址至第一个专辑末尾)

wget -O album.html  https://plus.google.com/photos/XXX/albums/YYY?authkey=ZZZ
grep '"https://lh..googleusercontent.com/.*",\[' album.html | sed 's%,"\(https://lh..googleusercontent.com/.*\)",\[".*%\1=w0-h0%' >images.txt
wget -i images.txt --content-disposition

这样您就可以获得所有图片,并且是完整尺寸(但没有 EXIF 数据)!这甚至适用于私人相册(可见性:“任何知道链接的人”)。

答案3

更新到最新版本的 Picasa,然后启动 Picasa,并检查窗口的右上角以确保您已登录 Google Plus。

然后点击

文件,从 Google+ 照片导入

答案4

使用 Picasa 您可以将完整相册下载到您的计算机。

以下是 Google 支持人员提供的操作方法: http://www.google.com/support/forum/p/Picasa/thread?tid=6847c29152910e21&hl=en

这显然只适用于从 Picasaweb 分享到 Google+ 的相册。Google+ 中的相册无法批量下载。

相关内容