Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

OOo,TeX,KO,ABI,GIMP,Picasa,ProE,QCAD,Inkscape,Kicad,Eagle
回复
gaplee
帖子: 8
注册时间: 2009-10-18 14:35

Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#1

帖子 gaplee » 2011-01-04 15:00

不得不承认Piacasa Photo Viewer是我见过的最好图片查看工具,但是Picasa 3 不支持Photo Viewer ,
很不爽,google了一下发现了这个网址
Picasa Photo Viewer (Linux port) for Ubuntu

我帮忙翻译一下:
如果你熟悉Windows的Picasa 3的话,你可能很喜欢包含Photo Viewer的版本.
很不幸,当前的Picasa 3 for Linux 不包含Photo Viewer
感谢热心的Irakli Gozalishvili 将Photo Viewer 移植到Linux.你可以在 Gozilla planet blog(这个网站我打不开)上找到这个版本.
但是这个版本不支持我的Ubuntu (8.10和9.04 32位,German),我修改了一些文件最终让她工作.
点此下载最新的PicasaPhotoViewer debian包,注意必须先安装Picasa 3.
运行下面的命令安装此包:

代码: 全选

sudo dpkg -i PicasaPhotoViewer-1.0.3.deb
卸载:

代码: 全选

sudo dpkg -r PicasaPhotoViewer
在Gnome中使用Photo Viewer
在文件上右击(这个文件的类型就是Picasa Photo Viewer将要关联的)
依次选择
Open with > Open with other application...
> Use a custom command > /usr/bin/PicasaPhotoViewer (我的系统是英文的不太方便翻译,我想大家应该也能看懂)
提示:(给了一个德文版Picasa 3的下载地址,我想大家应该不需要)
下载: PicasaPhotoViewer-1.0.3
文件我就不上传了,浪费论坛资源.点击上面的地址就可下载了.
祝大家使用愉快
头像
jarryson
帖子: 4002
注册时间: 2005-08-14 19:53

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#2

帖子 jarryson » 2011-01-04 15:52

不会是wine的吧,蛋疼啊,linux下那么多图片察看工具,功能齐全,小巧的也很多,为啥为要用wine的。还不支持gif
头像
daf3707
论坛版主
帖子: 12731
注册时间: 2007-06-13 15:57
来自: 在他乡

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#3

帖子 daf3707 » 2011-01-04 17:34

:em11
不错啊
头像
kakashiljf
帖子: 314
注册时间: 2008-10-14 16:36

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#4

帖子 kakashiljf » 2011-01-10 14:33

很好用,谢谢! :em11
学习知识本身其实是个痛苦的过程,但运用知识的过程,一般都很有趣,往往值得忍受当初那些“痛苦的学习过程”。
thorne
帖子: 660
注册时间: 2008-10-08 22:01

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#5

帖子 thorne » 2011-01-10 21:51

kde下我使用的时gwenview什么的

代码: 全选

其实我是个Debian GNU/Linux用户
Octave script :http://forum.ubuntu.org.cn/viewtopic.php?f=35&t=254511
Octave中文:http://forum.ubuntu.org.cn/viewtopic.php?f=35&t=318969
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#6

帖子 eexpress » 2011-01-10 22:05

图片只要快。
不要蛋痛
● 鸣学
头像
anton
帖子: 14
注册时间: 2009-12-15 13:47

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#7

帖子 anton » 2011-03-08 19:32

很好谢谢
meto
帖子: 304
注册时间: 2006-12-20 2:06

Re: Picasa 图片查看器 Picasa Photo Viewer(Ubuntu 10.04实测成功)

#8

帖子 meto » 2011-03-10 3:03

#!/bin/bash
# PicasaPhotoViewer Port for Linux
# By Irakli Gozalishvili <rfobic@gmail.com>

# Constants
Picasa3Path="/opt/google/picasa/3.0/"
RootForWinePath="Z:"
WineWrapper="/opt/google/picasa/3.0/bin/wrapper"
PicasaPhotoViewer=$Picasa3Path"wine/drive_c/Program Files/Google/Picasa3/PicasaPhotoViewer.exe"
DefaultImagePath=$Picasa3Path"wine/drive_c/Program Files/Google/Picasa3/runtime/splashPPV.png"

# Getting argument for image uri
if [ -f $1]; then
imageUnixPath=$DefaultImagePath
else
imageUnixPath=$1
fi

# Converting Unix File Path to Wine Path
imageWinePath=$RootForWinePath${imageUnixPath//\//\\}

# Running PicasaPhotoViewer with argument
$WineWrapper "$PicasaPhotoViewer" "$imageWinePath"

ArmaG.info

明显,是wine的 :em09
回复