Skip to content

Instantly share code, notes, and snippets.

@remyrd
remyrd / image-url-to-data-uri.cljs
Last active October 19, 2021 15:14 — forked from oliyh/image-url-to-data-uri.js
Convert an image url to a data URI without canvas
(require '[ajax.protocols :as pr])
;; effecting with re-frame-http-fx
{:http-xhrio {,,,
:response-format {:content-type "image/png"
:description "PNG image"
:read pr/-body
:type :arraybuffer}