From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nathan Neff Subject: Wow -- adding images to an org file Date: Thu, 6 May 2010 21:01:32 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1OACsp-0001O4-0U for emacs-orgmode@gnu.org; Thu, 06 May 2010 22:01:43 -0400 Received: from [140.186.70.92] (port=46551 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OACsn-0001Ko-IH for emacs-orgmode@gnu.org; Thu, 06 May 2010 22:01:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OACsl-0007r7-6r for emacs-orgmode@gnu.org; Thu, 06 May 2010 22:01:41 -0400 Received: from mail-ww0-f41.google.com ([74.125.82.41]:54311) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OACsl-0007qN-2b for emacs-orgmode@gnu.org; Thu, 06 May 2010 22:01:39 -0400 Received: by wwc33 with SMTP id 33so501638wwc.0 for ; Thu, 06 May 2010 19:01:37 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode I just saw Andreas's screenshot here: http://orgmode.org/worg/org-screenshots.php If you zoom in to his screenshot, http://orgmode.org/img/screenshots/org_andreas.jpg You can see how he adds images to his org files. All that I had to do was put this into my emacs init file: (defun org-dblock-write:image (params) (let ((file (plist-get params :file))) (clear-image-cache file) (insert-image (create-image file) ))) Then, put this in an org-file: #+BEGIN: image :file "~/Documents/personal/foo.png" #+END And run C-c C-c (or is it C-c C-x C-u)? Anyway, Cool stuff! --Nate