So if you could
cd /
find -name "*pdf" -exec grep -H JPXDecode {} \;
or as said in the comments
locate -0 .pdf | xargs -0 -n 1 grep -H JPXDecode
and send me (aacid@kde.org) a link to the pdf or the file pdf itself of all the files that match.
A blog about random things and sometimes about my work translating and developing KDE and anything
cd /
find -name "*pdf" -exec grep -H JPXDecode {} \;
locate -0 .pdf | xargs -0 -n 1 grep -H JPXDecode
12 comments:
Hello Albert,
I couldn't find an eMailAdress, so I just leave two url here in this comment:
http://cone.informatik.uni-freiburg.de/teaching/vorlesung/systeme-II-s07/folien/systeme-II-01.pdf
http://cone.informatik.uni-freiburg.de/teaching/vorlesung/systeme-II-s07/folien/systeme-II-13.pdf
are the only two files on my notebook which are matching.
Regards
Benjamin
ISBN 0-321-44561-9 (The Rails Way) is the only PDF matching that on my comp.
For someone with a locate database, you can use:
locate -0 .pdf | xargs -0 -n 1 grep -H JPXDecode
for a quicker search.
Here is one file I found:
file 1
A more appropriate comment would have had real Links.Sorry.
systeme-II-01.pdf
systeme-II-13.pdf
Regards
Benjamin
will your code also render PDFs with JPEG/JPEG2000 faster then xpdf's code?
@comment 5: Yes it's a bit faster, but it's only for JPEG2000, not for JPEG.
The only one matching I have is this PhD thesis.
Try http://www.americasarmy.com/downloads/files/AmericasArmyQuickstartGuide.zip
And there may be more files that use it on that site.
http://www.bp.com/liveassets/bp_internet/globalbp/globalbp_uk_english/publications/energy_reviews_2005/STAGING/local_assets/downloads/pdf/statistical_review_of_world_energy_full_report_2005.pdf
Hi. The only pdf I have found is Excerpts from The LaTeX Graphics Companion, 2nd edition.
By the way (and this is totally off topic) do you know what's the state of javascript in pdfs? I read a mail from Pino about making poppler able to read javascript, but that was in March.
I'm specially interested in being able to reproduce pdf animations like the ones created by the animate LaTeX package.
Do you know if it would be hard to add support for this? Is there a way I can sponsor this task?
Thanks in advance,
Daniel
@anonymous of comment #11:
I committed my patches, they will be in the next minor release of Poppler (0.10).
Furthermore, I have been working with the KJS developers, and thus Okular 0.7 (KDE 4.1) will have a really (really) basic JavaScript support.
Although, so far it is not enough for the most common JavaScript-in-PDF usages, but at least it is a start.
And no, it is not enough, yet, to make the LaTeX animate stuff working.
Hi Pino! Nice to read that. I really appreciate your work (and the work of all the people who develops okular and poppler, of course).
I'm a bit busy these days, but in two to three weeks i'll have the time, and I will try to investigate a bit about all that.
Regards,
Daniel
Post a Comment