Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.postscript > #3366
| From | John Forkosh <forkosh@panix.com> |
|---|---|
| Newsgroups | comp.lang.postscript |
| Subject | Re: JPEG to PDF question |
| Date | 2019-04-07 06:39 +0000 |
| Organization | PANIX Public Access Internet and UNIX, NYC |
| Message-ID | <q8c5uf$as5$1@reader2.panix.com> (permalink) |
| References | <eli$1904061719@qaz.wtf> |
Eli the Bearded <*@eli.users.panix.com> wrote: > For the task of submitting receipts to a web form that only accepts PDF > files, I'd like to be able to easily turn JPEGs into PDF. Today I had > one that I converted with Gimp, using "export as" > > -rw-rw-r-- 1 username username 585211 Apr 6 14:13 /tmp/statement.jpg > -rw-rw-r-- 1 username username 5113015 Apr 6 14:14 /tmp/statement.pdf > > This worked, but it's not great. Besides the PDF requirement, there's > also a file size cap which I just barely made it under (5MB: 5242880 > bytes). It's easy to see how the next one might not fit in 5MB with that > 8.7x file enlargement Gimp gave me. > > It looks like Gimp put a 1500x2000 JPEG as a 1500x2000 RGB bitmap with > only flate compression. This is 8.7x larger than JPEG and only 1.7x > smaller than raw binary RGB. > > What's a better way to do this? Unix (Linux) command line preferred. Gui > (like Gimp) acceptable but not great. Bonus if it can create a multiple > page PDF from individual images. > > Elijah > ------ > also acceptable convert to some other intermediate image format first One Linux command line tool for jpg->pdf would be ImageMagick's convert convert anyfile.jpg anyfile.pdf No filesize cap (that I'm aware of), but can't say whether or not it's "better" with respect to your other problems. And it's probably one-to-one with respect to "multiple pages", but then pdfjam pdfjam pagenum*.pdf --outfile allpages.pdf will definitely do that. And check out both programs' manpages for numerous (and I do mean numerous) other -switches. -- John Forkosh ( mailto: j@f.com where j=john and f=forkosh )
Back to comp.lang.postscript | Previous | Next — Previous in thread | Next in thread | Find similar
JPEG to PDF question Eli the Bearded <*@eli.users.panix.com> - 2019-04-06 21:33 +0000
Re: JPEG to PDF question John Forkosh <forkosh@panix.com> - 2019-04-07 06:39 +0000
Re: JPEG to PDF question Guy <guy@guysalias.tk.invalid> - 2019-04-07 14:52 -0500
Re: JPEG to PDF question Eli the Bearded <*@eli.users.panix.com> - 2019-04-07 21:54 +0000
Re: JPEG to PDF question ken <ken@spamcop.net> - 2019-04-08 10:30 +0100
Re: JPEG to PDF question Martin Leese <please@see.Web.for.e-mail.INVALID> - 2019-04-08 10:24 -0600
Re: JPEG to PDF question Javier <invalid@invalid.invalid> - 2019-04-10 18:10 -0500
Re: JPEG to PDF question luser droog <luser.droog@gmail.com> - 2019-04-10 18:01 -0700
Re: JPEG to PDF question ken <ken@spamcop.net> - 2019-04-11 10:50 +0100
Re: JPEG to PDF question Scott Hemphill <hemphill@hemphills.net> - 2019-04-11 17:59 -0400
Re: JPEG to PDF question luser droog <luser.droog@gmail.com> - 2019-04-11 16:03 -0700
Re: JPEG to PDF question Eli the Bearded <*@eli.users.panix.com> - 2019-04-12 00:33 +0000
Re: JPEG to PDF question Mark Carroll <mtbc@bcs.org> - 2019-04-12 07:15 +0100
Re: JPEG to PDF question orr721@gmail.com - 2019-06-16 07:11 -0700
csiph-web