ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen via ntg-context <ntg-context@ntg.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: Hans Hagen <j.hagen@xs4all.nl>, Pablo Rodriguez <oinos@gmx.es>
Subject: Re: read PDF metadata from other file
Date: Sat, 11 Sep 2021 18:16:34 +0200	[thread overview]
Message-ID: <22239887-bae1-7a4d-9142-76c75ed54b6a@xs4all.nl> (raw)
In-Reply-To: <3282f33e-4601-eabd-d964-188884b504bf@gmx.es>

On 9/11/2021 2:35 PM, Pablo Rodriguez via ntg-context wrote:
> Dear list,
> 
> I have the following sample:
> 
>    \starttext
>    \setupinteraction
>      [state=start,
>       title={\cldcontext{pdfe.open("b.pdf").Info.Title}}]
>    \null
>    \stoptext
> 
>  From a document composed with \insertpages, I need to transfer medatada.
> 
> But I get the raw value "feff0061" (which I guess it may be introduced
> by lpdf.pdfunicode).
> 
> How can I get the pure text value, so I can transfer metadata from one
> PDF document into another PDF document?
just use the better interface

\starttext

\startluacode
     function document.whatever(name)
         local p = lpdf.epdf.load(name)
         context(p.Info.Title)
         lpdf.epdf.unload(p)
     end
\stopluacode

and/or use the converter (but still you need to close the file)

\setupinteraction
   [state=start,
  % title=\cldcontext{lpdf.fromsixteen(pdfe.open("b.pdf").Info.Title)},
    title={\ctxlua{document.whatever("b.pdf")}}]

  %\cldcontext{lpdf.fromsixteen(pdfe.open("b.pdf").Info.Title)}
   \ctxlua{document.whatever("b.pdf")}

\stoptext

after which you enter wiki mode

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

  reply	other threads:[~2021-09-11 16:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-11 12:35 Pablo Rodriguez via ntg-context
2021-09-11 16:16 ` Hans Hagen via ntg-context [this message]
2021-09-11 18:54   ` Pablo Rodriguez via ntg-context

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=22239887-bae1-7a4d-9142-76c75ed54b6a@xs4all.nl \
    --to=ntg-context@ntg.nl \
    --cc=j.hagen@xs4all.nl \
    --cc=oinos@gmx.es \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).