From: Alan Braslau via ntg-context <ntg-context@ntg.nl>
To: Henning Hraban Ramm <texml@fiee.net>
Cc: mailing list for ConTeXt users <ntg-context@ntg.nl>,
Alan Braslau <alan.braslau@icloud.com>
Subject: [NTG-context] Re: Downsampling images (again)
Date: Sat, 21 Sep 2024 08:30:59 -0600 [thread overview]
Message-ID: <20240921083059.1d05b717@boo.my.domain> (raw)
In-Reply-To: <23dd9e7a-a61c-4697-998c-ac4de8273592@fiee.net>
Hraban,
I would first "fix" my image sources, individually, to contain missing
resolution information.
Alan
On Sat, 21 Sep 2024 13:21:08 +0200
Henning Hraban Ramm <texml@fiee.net> wrote:
> This is lying around for years, let’s try to get it finally working.
> The code below works, but doesn’t do the right thing.
>
> Since the original image doesn’t contain a resolution setting, gm
> doesn’t do anything:
> “gm convert: image does not contain resolution”
>
> It would be more reliable to use “gm convert -resize”, but for that
> we need to know the final pixel size.
>
> How can a converter function access …
> – the final (scaled) size of a placed image
> – the original pixel size of an image
> ?
> With that information it would be easy to calculate the target pixel
> size.
>
> And then it would be nice to hook this function into
> \setupexternalfigure[conversion=]
>
>
> """
> \startluacode
> local function downsampler(oldname, newname, resolution)
> if not resolution or resolution == "" then
> resolution = 72
> end
> local cmd = string.format(
> [[gm convert -resample %ix%i "%s" "%s"]],
> resolution, resolution, oldname, newname)
> logs.report("downsample", cmd)
> os.execute(cmd)
> end
>
> -- Set the PDF and default JPEG converters to the above function.
> figures.converters.jpg.pdf = downsampler
> figures.converters.jpg.default = downsampler
> \stopluacode
>
> \setupexternalfigure[
> %conversion=downsampler,% not used
> resolution=10,
> ]
>
> \starttext
>
> \externalfigure[https://upload.wikimedia.org/wikipedia/commons/d/dd/Hermann_Zapf_signing.jpg][width=.5\textwidth]
>
> \stoptext
> """
>
> Hraban
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________
___________________________________________________________________________________
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
___________________________________________________________________________________
next prev parent reply other threads:[~2024-09-21 14:40 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-21 11:21 [NTG-context] " Henning Hraban Ramm
2024-09-21 14:30 ` Alan Braslau via ntg-context [this message]
2024-09-21 19:44 ` [NTG-context] " Henning Hraban Ramm
2024-09-23 1:48 ` Alan Braslau via ntg-context
2024-09-22 7:06 ` Peter Münster
2024-10-09 16:52 ` Henning Hraban Ramm
2024-10-16 17:59 ` Henning Hraban Ramm
2024-10-17 11:11 ` Peter Münster
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=20240921083059.1d05b717@boo.my.domain \
--to=ntg-context@ntg.nl \
--cc=alan.braslau@icloud.com \
--cc=texml@fiee.net \
/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).