ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <pragma@wxs.nl>
To: "Dr. Hartmut Henkel" <hartmut_henkel@gmx.de>
Cc: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: error when using externalfigure
Date: Mon, 26 Nov 2012 21:42:34 +0100	[thread overview]
Message-ID: <50B3D43A.2060709@wxs.nl> (raw)
In-Reply-To: <alpine.DEB.2.00.1211262048550.3375@hahepc2.hahe>

On 11/26/2012 8:54 PM, Dr. Hartmut Henkel wrote:
> On Mon, 26 Nov 2012, Hans Hagen wrote:
>> On 11/26/2012 10:36 AM, luigi scarso wrote:
>>> On Mon, Nov 26, 2012 at 10:20 AM, Pavel Dohnal <pavel.dohnal@twobits.cz>
>>> wrote:
>>>> I have a big context source file which contains pictures from different
>>>> sources. The problem is, that there are some pictures the context cannot
>>>> process. It displays an error message and ends. I run the context from
>>>> another script in batchmode. After finishing, the context creates a PDF
>>>> file, which contains this problematic picture but the pdf is broken. It
>>>> does
>>>> not have numbers in the table of contents and it is not arranged by setup.
>>>> Here is a minimal example:
>>>> \starttext
>>>> \externalfigure[http://cdn-locations-images.tripomatic.com/img-poi1295-5ZTynx-s.jpg][width=26.5mm]
>>>> \stoptext
>
> i just tried the minimal example here, it gives a valid PDF with a
> properly (afaics) scaled image.
>
> Creator:        ConTeXt - 2012.11.26 13:31
> Producer:       LuaTeX-0.70.2
>
>>> when I save the jpg  as eps from gimp
>>> I see
>>> width = 6096,00
>>> height=4064,00
>
> tried, can't see here.
>
>>> The first value is off for TeX.
>>
>> if i print the values from the img object i get
>>
>> 17344.8pt
>> 11563.2pt
>>
>> so the problem is deep down in the jpg reader ... the image is crippled in the
>> sense that it has no valid resolution information
>>
>> something for hartmut to check in the img lib
>
> can't confirm. Is this solved already?

the latest beta clips ... something:

local maxdimen = 2^30-1

function img.check(figure)
     if figure then
         local width = figure.width
         local height = figure.height
         if height > width then
             if height > maxdimen then
                 figure.height = maxdimen
                 figure.width  = width * maxdimen/height
             end
         elseif width > maxdimen then
             figure.width  = maxdimen
             figure.height = height * maxdimen/width
         end
         return figure
     end
end

so it's taken care of (in principle the img library is right in handling 
 > maxdimen dimensions as lua has no such limit)

Hans

-----------------------------------------------------------------
                                           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-11-26 20:42 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-26  9:20 Pavel Dohnal
2012-11-26  9:27 ` Hans Hagen
2012-11-26  9:56   ` Pavel Dohnal
2012-11-26  9:36 ` luigi scarso
2012-11-26  9:50   ` Hans Hagen
2012-11-26 10:00     ` luigi scarso
2012-11-26 10:10       ` Martin Schröder
2012-11-26 10:40         ` Pavel Dohnal
2012-11-26 10:50           ` luigi scarso
2012-11-26 12:32       ` Hans Hagen
2012-11-26 15:01         ` Sietse Brouwer
2012-11-26 19:54     ` Dr. Hartmut Henkel
2012-11-26 20:42       ` Hans Hagen [this message]
     [not found] <mailman.384.1353926481.2161.ntg-context@ntg.nl>
2012-11-26 11:21 ` Robert Blackstone

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=50B3D43A.2060709@wxs.nl \
    --to=pragma@wxs.nl \
    --cc=hartmut_henkel@gmx.de \
    --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).