ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Fabrice L <fabrice.alpha@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: [NTG-context] Re: Rotating and scaling images to fit a page
Date: Thu, 24 Apr 2025 09:02:22 -0400	[thread overview]
Message-ID: <13FE1B50-565A-4830-825F-0990BAE8AD59@gmail.com> (raw)
In-Reply-To: <CAL-A5LZSQSf2XQ5NECLy6Mcqn2rEFLqAB6K-38haTeHWCHoQMA@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 2459 bytes --]

Hi,

> Le 24 avr. 2025 à 04:28, Michael Guravage <guravage@literatesolutions.com> a écrit :
> 
> Greetings,
> 
> I have many images, all with different aspect ratios, that I would like to collect in a document. Each image should be rotated and scaled to fit its page. My MWE uses an image's width and height to discern whether it's wide, tall, or square. This works, but I feel I'm reinventing the wheel. Is there a more straightforward way to implement this? Any suggestions would be much appreciated.

Here is a suggestion :
\starttext
\startMPpage
	draw externalfigure "cow.pdf" xysized(10in,2in) ;
\stopMPpage
\stoptext

Just change for your pagesize the dimensions above.
Fabrice.
> 
> --
> With kind regards,
> 
> Michael Guravage
> 
> 
> \showgrid
> \setuplayout
>   [header=0pt, footer=0pt,
>    topspace=0pt, bottomspace=0pt,
>    height=middle, width=middle,
>    backspace=0pt]
> 
> \starttext
>   \startluacode
>     require "lfs"
>     function GetFileExtension(url)
>       return url:match("^.+(%..+)$")
>     end
>     cwd=lfs.currentdir()
>     for file in lfs.dir(cwd) do
>       suffix = GetFileExtension(file)
>       if suffix == ".png" then
>         image = figures.getinfo(file).used
>         width = image.width or 0
>         height = image.height or 0
>         aspect = height/width
>         if (aspect > 0.9 and aspect < 1.1 )  then
>           context.externalfigure({file},{width="\\textwidth"})  -- almost square
>         elseif height < width then
>           context.externalfigure({file},{width="\\textheight", orientation=90}) -- landscape
>         else
>           context.externalfigure({file},{height="\\textheight"}) -- portrait
>         end
>         context.page <http://context.page/>()
>       end
>     end
>   \stopluacode
> \stoptext
> 
> <square_s.png><scaleme.tex><landscape_s.png><portrait_s.png><scaleme.pdf>___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
> webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
> archive  : https://github.com/contextgarden/context
> wiki     : https://wiki.contextgarden.net
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 4054 bytes --]

[-- Attachment #2: Type: text/plain, Size: 511 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki     : https://wiki.contextgarden.net
___________________________________________________________________________________

      reply	other threads:[~2025-04-24 13:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-24  8:28 [NTG-context] " Michael Guravage
2025-04-24 13:02 ` Fabrice L [this message]

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=13FE1B50-565A-4830-825F-0990BAE8AD59@gmail.com \
    --to=fabrice.alpha@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).