PDF to JPG local conversion [closed] - pdf

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm looking for a solution that will allow users to convert PDF files possibly of multiple pages into JPGs. The solution must be local, online solutions are a no go due to security issues and it must be as ridiculously simple as possible so non IT types can use it easily. Licensing is not an issue but would prefer for it to be GPL. Can anyone help?
Thanks.

Ghostscript, with a command line like
gs -sDEVICE=jpeg -sOutputFile=page%02d.jpg -r150 -dNOPAUSE -dBATCH file.pdf
where 150 is the resolution in dots per inch. You could wrap this in some script that presents a nicer user interface.

Related

run bash (command line) inside Emacs text editor? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
i want to run command line inside emacs text editor .
i have just finished the emacs tutorial i want to practice in some SQL files and i need the command line near to me to see SQL changes and results
any idea ?
There you have some tips how to or basicaly run 2 terminals on one Computer(Subshells)
or GNU documentation website of emacs with some valuable links for shells

Can I use this Notepad++ for OS X? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I found this notepad++ for mac ,it has a size of 215 megabytes(quite large).
I have downloaded it and started looking at it.
I found this link:
http://www.youtube.com/watch?v=ywh6HlCmtg0
It is actually working pretty good.
I just like to know;
is this OK?,Or Lawful?
if it is not I like to remove this from my computer.
Thanks
I'd recommend you use something like Sublime Text 2 if you want to have a neat text editor. You can use it for free, it just bugs you once in a while, when you save a file. It's full featured either way.

How to automate LaTeX to PDF conversion with quickrun.vim [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to automatically convert LaTeX to PDF with pdflatex, then open the PDF in Evince using quickrun.vim.
I've read the documentation for quickrun.vim, and it seems that I should use a function :function! quickrun#register_outputter(name, outputter), but how can I realize that by configuring my .vimrc?
I don't know anything about quickrun.vim, but a simple mapping would also be sufficient. Add this to your .vimrc:
autocmd FileType tex noremap <buffer> <F5> :w<CR> :!pdflatex -shell-escape "%" && evince %:p:r.pdf<CR>
Hitting will then run pdflatex and open the pdf in evince.

How to create a read only document in latex? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I am trying to generate read only pdf's with latex and I am having difficulty finding the best solution. I looked at pdftek but what are other options?
If you want truly read-only pdf's you can do what law firms do and print out the document then scan it back to a pdf.
PDF is an open format and given the right tools you can take it apart and pull out any images and any text. That being said you can add security permissions using the pdftk tool. If you encrypt it you can set permissions (like disabling editing and disabling printing)
See pdftk and permissions in the man page.

how to merge pdf page [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
Improve this question
I have one pdf file which is extract from ppt (power point presentation) and one page in pdf is one slide. How can I merge two pdf page in one page.
pdftk is the tool I use
http://www.pdfjoin.com/ is an online solution. Here's the (linux) command line tool.
Quick googling did bring up this tool: http://www.pdfsam.org/
GPL licenced too.