From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/13276 Path: main.gmane.org!not-for-mail From: "Pawel Jackowski na Onet" Newsgroups: gmane.comp.tex.context Subject: Re: Re: height and width of a figure Date: Wed, 17 Sep 2003 04:26:13 +0200 Sender: ntg-context-admin@ntg.nl Message-ID: <000b01c37cc3$10fd79a0$0500a8c0@best> References: <16664.1063718323@www45.gmx.net> <000801c37c97$f969eb00$217afea9@sevi> Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1063765945 26199 80.91.224.253 (17 Sep 2003 02:32:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 17 Sep 2003 02:32:25 +0000 (UTC) Original-X-From: ntg-context-admin@ntg.nl Wed Sep 17 04:32:24 2003 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19zS7E-0002rI-00 for ; Wed, 17 Sep 2003 04:32:24 +0200 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id C2A7310B33; Wed, 17 Sep 2003 04:32:20 +0200 (MEST) Original-Received: from smtp1.poczta.onet.pl (smtp1.poczta.onet.pl [213.180.130.31]) by ref.ntg.nl (Postfix) with ESMTP id 33EDA10B31 for ; Wed, 17 Sep 2003 04:26:21 +0200 (MEST) Original-Received: from pa36.debniki.sdi.tpnet.pl ([213.77.147.36]:9732 "HELO best") by ps1.test.onet.pl with SMTP id ; Wed, 17 Sep 2003 04:26:01 +0200 Original-To: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Errors-To: ntg-context-admin@ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.comp.tex.context:13276 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:13276 Hello! > Hi Patrick and all the others > > thanks for your answer. I think I asked my question a little bit unclearly. > I wanted to know if i can get the width of a figure, or the overlaywidth of > this figure as a numeric. I want to make a frame like this: > \framed[width=, height= \externalfigure[fig]>]{blabla}. > I don't know if such a thing is possible, I didn't find such a thing in a > manual. Why dont You just put the figure into a box? You can always say: \newdimen\W \newdimen\H \setbox0\hbox{\externalfigure[your_figure]} \W=\wd0\relax \H=\ht0 \advance\H by \dp0\relax \the\W \the\H \end Such row TeX code always work:) Regards, Pawe/l