all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Xah Lee <xah@xahlee.org>
To: help-gnu-emacs@gnu.org
Subject: does create-image caches??
Date: Thu, 22 Nov 2007 12:19:18 -0800 (PST)	[thread overview]
Message-ID: <da6b21ab-af56-4cba-b020-eefcc21978c6@d21g2000prf.googlegroups.com> (raw)

i have this function which returns the image file's width and height
as a list, of a given image file path.

(defun get-image-dimensions2 (img-file-relative-path)
  "Returns a image file's width and height as a list."
  (let (tmp dimen)
    (setq tmp
          (create-image (concat default-directory img-file-relative-
path)))
    (setq dimen (image-size tmp t))
    (list (car dimen) (cdr dimen))
  )
)

My problem with this is that, suppose i have a image x.png. Now, i run
this function to get its dimensions. Now, i crop x.png so its
dimension is changed. But when i run this function again, the
dimension doesn't change.

Seems emacs somehow has cached size of previous tmp img. How to fix
this?

Thanks.

  Xah
  xah@xahlee.org
\xAD\xF4 http://xahlee.org/

             reply	other threads:[~2007-11-22 20:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-22 20:19 Xah Lee [this message]
2007-11-22 20:55 ` does create-image caches?? Juanma Barranquero
2007-11-22 20:59 ` Jason Rumney

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=da6b21ab-af56-4cba-b020-eefcc21978c6@d21g2000prf.googlegroups.com \
    --to=xah@xahlee.org \
    --cc=help-gnu-emacs@gnu.org \
    /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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.