ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <pragma@wxs.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: Mari Voipio <mari.voipio@iki.fi>
Subject: Re: Getting changing/random graphics?
Date: Thu, 16 Feb 2012 10:48:28 +0100	[thread overview]
Message-ID: <4F3CD0EC.9080306@wxs.nl> (raw)
In-Reply-To: <CAGbDsP1KpAJc5h3fJsXt=REX6pb92cfg__J5N6tBRRY6me84Ug@mail.gmail.com>

On 16-2-2012 07:43, Mari Voipio wrote:
> Hello all,
>
> I'm trying to do something that should be possible and I think
> "variables" is the answer, I just can't figure out how.
>
> I have a pile of photos (jpg) in a directory and the assumption is
> that they are all the same size and there's a spot for the photo on a
> layer at the top of the page. I already found out how I can get
> ConTeXt to draw the layer separately for each page (at
> http://wiki.contextgarden.net/layers#Use_dynamic_content), but I think
> I need a "variables for dummies" page...
>
> This time I'm not too picky, the images can be used randomly or in the
> order they are in the directory and then cycled, I'd just like to use
> more than one (and I'm so not doing every page by hand).
>
>
> So, if I have
>
> photo1.jpg
> photo2.jpg
> photo3.jpg
> photo4.jpg
>
>
> and \dorecurse{10}{insert random photo here}, how do I do it?

More fancy ...

\startluacode

     local files = { }

     function document.collectgraphics(pattern)
         files = table.merged(files,dir.glob(pattern))
         files = table.unique(files)
         table.sort(files)
         logs.report(string.format("graphics: %s",table.concat(files," ")))
     end

     function document.choosegraphics()
         if #files > 0 then
             context(table.remove(files, math.random(1,#files)) or "dummy")
         else
             context("dummy")
         end
     end

\stopluacode

\def\CollectGraphics[#1]{\ctxlua{document.collectgraphics("#1")}}
\def\ChooseGraphic      {\ctxlua{document.choosegraphic()}}

\CollectGraphics[*.png]
\CollectGraphics[*.jpg]

\starttext

     \dorecurse {10} {
         \expanded{\externalfigure[\ChooseGraphic][width=4cm]}
     }

\stoptext



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


  reply	other threads:[~2012-02-16  9:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-16  6:43 Mari Voipio
2012-02-16  9:48 ` Hans Hagen [this message]
2012-02-16  9:50 ` Hans Hagen
2012-02-22  8:22   ` Mari Voipio
2012-02-16  9:53 ` Marco
2012-02-22  7:32   ` Mari Voipio

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=4F3CD0EC.9080306@wxs.nl \
    --to=pragma@wxs.nl \
    --cc=mari.voipio@iki.fi \
    --cc=ntg-context@ntg.nl \
    /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).