Hi Alexander,
AW <[email protected]> writes:
> If I include an image in an *.org file, let's say [[large-image.jpg]], I can
> toggle the inline image with C-c C-x C-v .
You can now (from git master) use `org-image-actual-width'.
(setq org-image-actual-width 300)
=> always resize inline images to 300 pixels
(setq org-image-actual-width '(400))
=> if there is a #+ATTR.*: width="200", resize to 200,
otherwise resize to 400
(setq org-image-actual-width nil)
=> if there is a #+ATTR.*: width="200", resize to 200,
otherwise don't resize
(setq org-image-actual-width t)
=> Never resize and use original width (the default)
HTH,
--
Bastien