我有带有图层蒙版(即透明胶片)的 PDF 文件,我需要提取透明的图像图层。
当我pdfimages
用来提取图像时 - .jpgs 和 .pngs 都具有相同的白色不透明背景。ImageMagick 的convert a.pdf image-%04d.png
输出单个非分层文件。
任何帮助,将不胜感激。
我有带有图层蒙版(即透明胶片)的 PDF 文件,我需要提取透明的图像图层。
当我pdfimages
用来提取图像时 - .jpgs 和 .pngs 都具有相同的白色不透明背景。ImageMagick 的convert a.pdf image-%04d.png
输出单个非分层文件。
任何帮助,将不胜感激。
我使用挂载了一个远程目录sshfs
,但我无法使用 保存文件,而使用worksgedit
保存相同的文件。vi
更改权限以o-r (640)
允许gedit
保存文件确定。有没有办法改变sshfs
连接以在gedit
不chmod
ding 每个文件的情况下工作?
(我使用 -o uid= id -u
-o gid= id -g
,因此远程文件似乎归我所有)
$ touch test.txt
[!] test.txt appears
$ vi test.txt
[!] :wq -> saves just FINE
$ gedit test.txt
[!] opens fine, but upon save shows "You do not have the
[!] permissions necessary to save the file" error -
[!] CAN'T SAVE
$ vi test.txt
[!] edit, :wq -> again saves just FINE!
$ ls -l test.txt
-rw-r--r-- ..... test.txt
[!] Now the tricky part:
$ chmod o-r test.txt
-rw-r----- ..... test.txt <-- removed 'read' perm. from 'others'
$ gedit test.txt
# WORKS! Saves just fine!
为什么删除其他人的读取权限允许 gedit 保存?(而 vi 和其他人没有这个问题?)
有没有办法更改 sshfs 连接字符串以允许我直接在服务器上编辑所有文件,而无需 chmod 或它们?