ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: "Mikael P. Sundqvist" <mickep@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: resize and center and clip image
Date: Thu, 1 May 2014 15:38:29 +0200	[thread overview]
Message-ID: <CAHy-LL9=UP-tZnesqLbSRHmmUwxps3D-z3H9mYVePVz6cx7H3w@mail.gmail.com> (raw)
In-Reply-To: <CAHy-LL9FQARUMgic1zRjU59kj3zo8=JtsAR2r_M+_gxwpj9rSQ@mail.gmail.com>

OK, sorry for the noise. I think I have the solution:

\startexternalfigurecollection[k.jpg]
     \useexternalfigure[k.jpg][k.jpg]
 \stopexternalfigurecollection


\externalfigurecollectionminwidth{k.jpg}
\externalfigurecollectionmaxheight{k.jpg}

\clip[width=8cm,height=7cm]{%
\framed[width=8cm,height=7cm,align={middle,lohi},offset=overlay]{%
\dimen0=\externalfigurecollectionminwidth{k.jpg}
\dimen2=\externalfigurecollectionmaxheight{k.jpg}
\dimen4=8cm
\dimen6=7cm
\startluacode
if tex.dimen[0] / tex.dimen[2] < tex.dimen[4] / tex.dimen[6] then
      local skalning =
-0.5*(tex.dimen[4]/tex.dimen[0]*tex.dimen[2]-tex.dimen[6])
      context("\\vskip%ssp", skalning)
      context.externalfigure({"k.jpg"},{width="8cm"})
      context.sprint("foo")
else
      local skalning =
-0.5*(tex.dimen[6]/tex.dimen[2]*tex.dimen[0]-tex.dimen[4])
      context("\\hskip%ssp", skalning)
      context.externalfigure({"k.jpg"},{height="7cm"})
      context.sprint("bar")
end
\stopluacode
}}

If there are any bad side effects of this or simplifications, please
do not hesitate to tell me :)

/Mikael

On Thu, May 1, 2014 at 1:50 PM, Mikael P. Sundqvist <mickep@gmail.com> wrote:
> Hi!
>
> Assume that I want to fill in the text area with images, and I want to
> clip and scale them according to these rules:
>
> 1) If the image is "too wide" (in sense of proportions), then scale it
> so that the height fits the text area height, center it, and clip it
> to the text area. (See the attached image, on top, where the blue area
> is supposed to show the text area and the red rectangle the image.)
>
> 2) If the image is "too high" (in sense of proportions), then scale it
> so that the width fits the text area width, center it, and clip it to
> the text area. (See the attached image, on bottom.)
>
> The background why I want to do this is that I'm making a small
> template for presentations, and I'd like the users to insert images as
> background without really having to think about if their proportions
> fit or not.
>
> Best regards, Mikael
___________________________________________________________________________________
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:[~2014-05-01 13:38 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-01 11:50 Mikael P. Sundqvist
2014-05-01 13:38 ` Mikael P. Sundqvist [this message]
2014-05-01 14:59   ` Otared Kavian
2014-05-01 15:07     ` Mikael P. Sundqvist
2014-05-01 16:43       ` Otared Kavian
2014-05-01 18:00       ` Aditya Mahajan
2014-05-01 19:27         ` Mikael P. Sundqvist
2014-05-01 19:31         ` Wolfgang Schuster

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='CAHy-LL9=UP-tZnesqLbSRHmmUwxps3D-z3H9mYVePVz6cx7H3w@mail.gmail.com' \
    --to=mickep@gmail.com \
    --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).