all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tomas Hlavaty <tom@logand.com>
To: help-gnu-emacs@gnu.org
Subject: Re: make a drawing with Emacs
Date: Wed, 02 Sep 2020 23:10:29 +0200	[thread overview]
Message-ID: <87sgbzsx4q.fsf@logand.com> (raw)
In-Reply-To: <20200901145854.GF15433@tuxteam.de>

>> That might be an emacs-nox thing, perhaps?
>
> Your Emacs has to be able to display svg images.

It is a shame that image code in emacs is completely dependent on unsafe
foreign libraries and tightly coupled with graphics toolkits.

> Your easiest bet is that you are just missing librsvg (package
> librsvg2-2 or thereabouts, if you are on Debian) -- but of course,
> your Emacs has to be compiled with SVG support built in (no idea
> whether emacs-nox does).

Here is an alternative which works even on console without any graphics
toolkit compiled in:

(require 'xml)
(with-temp-buffer
  (xml-print
   '((svg
      ((xmlns . "http://www.w3.org/2000/svg")
       (viewBox . "0 0 100 100"))
      (circle
       ((cx . "50") (cy . "50") (r . "20"))))))
  (write-file "/tmp/a.svg"))

The /tmp/a.svg file will contain the SVG image.

Now the nice part of doing it in pure Elisp is that you can refactor the
code into useful functions as you need.  For example:

(defun svg (x y w h &rest body)
  `((svg
     ((xmlns . "http://www.w3.org/2000/svg")
      (viewBox . ,(format "%s %s %s %s" x y w h)))
     ,@body)))

(defun svg-circle (cx cy r)
  `(circle
    ((cx . ,(format "%s" cx)
     (cy . ,(format "%s" cy))
     (r . ,(format "%s" r))))))

(with-temp-buffer
  (xml-print
   (svg 0 0 100 100 (svg-circle 50 50 20)))
  (write-file "/tmp/a.svg"))

You can then display the generated image in the console using
https://logand.com/sw/emacs-framebuffer/file/emacs-framebuffer.el.html



  parent reply	other threads:[~2020-09-02 21:10 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-31  3:05 make a drawing with Emacs Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-31  7:36 ` tomas
2020-08-31 20:29   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-31 20:49     ` Yuri Khan
2020-08-31 20:52       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-31 21:01         ` Yuri Khan
2020-08-31 21:04           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-31 22:48             ` Perry Smith
2020-08-31 23:09               ` Ulrich Deiters
2020-09-01  8:22           ` tomas
2020-09-01  8:38             ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-01  9:04               ` tomas
2020-09-01 17:22                 ` Marcin Borkowski
2020-09-01 20:48                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-02  8:25                     ` tomas
2020-09-01 12:22             ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-01 14:58               ` tomas
2020-09-01 20:45                 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-02 21:10                 ` Tomas Hlavaty [this message]
2020-09-02 21:51                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-03  1:26                     ` Leo Butler
2020-09-02 22:28                   ` Stefan Monnier
2020-09-03  5:13                     ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-03  7:34                     ` Tomas Hlavaty
2020-09-03 13:38                       ` Stefan Monnier
2020-09-03 15:21                         ` Tomas Hlavaty
2020-09-03 16:59                           ` Stefan Monnier
     [not found]                             ` <87tuwen4mo.fsf@logand.com>
     [not found]                               ` <jwvimcuiqur.fsf-monnier+emacs@gnu.org>
2020-09-04  8:42                                 ` Tomas Hlavaty
     [not found]                       ` <mailman.2156.1599118473.2469.help-gnu-emacs@gnu.org>
2020-09-03 17:23                         ` Lars Magne Ingebrigtsen
     [not found]                           ` <mailman.2212.1599153847.2469.help-gnu-emacs@gnu.org>
2020-09-03 17:28                             ` Lars Magne Ingebrigtsen
2020-09-03 17:41                               ` Stefan Monnier
     [not found]                                 ` <mailman.2217.1599154928.2469.help-gnu-emacs@gnu.org>
2020-09-03 17:45                                   ` Lars Magne Ingebrigtsen
2020-09-03 18:23                                     ` Tomas Hlavaty
     [not found]                                       ` <mailman.2224.1599157422.2469.help-gnu-emacs@gnu.org>
2020-09-03 19:43                                         ` Lars Magne Ingebrigtsen
2020-09-03 19:50                                           ` Tomas Hlavaty
2020-09-04  8:43                                             ` tomas
2020-09-04  8:59                                               ` Tomas Hlavaty
2020-09-04  9:26                                                 ` tomas
2020-09-04  9:48                                                   ` Tomas Hlavaty
2020-09-03 17:55                               ` Tomas Hlavaty
     [not found]                                 ` <mailman.2221.1599155709.2469.help-gnu-emacs@gnu.org>
2020-09-03 18:04                                   ` Lars Magne Ingebrigtsen
     [not found]                                     ` <mailman.2222.1599156265.2469.help-gnu-emacs@gnu.org>
2020-09-03 18:09                                       ` Lars Magne Ingebrigtsen
2020-09-03 18:29                                         ` Tomas Hlavaty
2020-09-03 18:32                                           ` Tomas Hlavaty
2020-09-03  7:14                   ` tomas
2020-09-03  8:03                     ` Tomas Hlavaty
2020-09-01  8:32           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-01  8:58             ` tomas
2020-09-01  8:18         ` tomas
2020-09-24 15:09           ` Jean Louis
2020-09-24 16:53             ` Leo Butler
2020-09-24 20:14             ` tomas
2020-08-31 17:41 ` Marcin Borkowski
2020-08-31 20:30   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-31 19:40 ` Carlo Tambuatco
2020-08-31 20:33   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-08-31 20:56 ` Gregory Heytings via Users list for the GNU Emacs text editor
2020-08-31 21:00   ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-01  8:40     ` Gregory Heytings via Users list for the GNU Emacs text editor
2020-09-01  5:37   ` 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=87sgbzsx4q.fsf@logand.com \
    --to=tom@logand.com \
    --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.