Re: [O] Scaling of image previews in org-mode

2016-08-10 Thread John Kitchin
Certainly it could be adapted to other modes, at least for showing the
images. If there was a way to parse resizing info, or set it via
variables, you could also get resized images. The key is hooking into
font-lock and detecting where images are. 

The basic framework is laid out here:

http://kitchingroup.cheme.cmu.edu/blog/2016/03/21/Displaying-image-overlays-on-image-filenames-in-Emacs/

That example had imagemagick compiled in, but it could be adapted pretty
readily to use an external imagemagick..


Uwe Brauer writes:

 "John" == John Kitchin  writes:
>
>> I use this code here:
>> https://github.com/jkitchin/scimax/blob/master/scimax-org.el#L957
>
>> to provide inline scaling in Emacs when it is not built with imagemagick.
>
> Hi
>
> Could that package or parts of it also be used in other modes?
>
> I have the problem of displaying images in latex buffers (using auctex)
>
> The only available tool I know is iimage.el, but this package does not
> allow to re-seize the displayed image. I asked about it on emacs devel
> and the answer was: «please send a patch or wait», fail enough
>
> I just attach the mail in question below in order to clarify.
>
> ,
> | 
> | 
> | 
> | I just learnt about iimage.el, which is now part of GNU emacs core. I
> | like it quite a lot, the only thing which I find a bit inconvenient on
> | my 12 inch Laptop is the size of the images displayed. I did not find
> | any variable in which the size of images could be changed.
> | 
> | 
> | The author's address does not work anymore, so I looked at the code it
> | seems that the essential part is this:
> | 
> |   (if arg
> |   (add-text-properties (match-beginning 0) (match-end 0)
> |`(display ,(create-image file)
> |   ^
> |  modification-hooks
> |  (iimage-modification-hook)))
> | 
> | 
> | Now I checked that function and its documentation says
> | ,
> | [+]
> | | 
> | | create-image is an autoloaded compiled Lisp function in ‘image.el’.
> | | (create-image FILE-OR-DATA  TYPE DATA-P  PROPS)
> | | Create an image.
> | | 
> | | Images should not be larger than specified by ‘max-image-size’.
> | `
> | 
> | 
> | However 
> | ,
> | [+]
> | | max-image-size is a variable defined in ‘C source code’.
> | | Its value is 10.0
> | `
> | 
> | So I cannot change that value easily. Anybody has an idea how to change
> | the size of the displayed images?
> | 
> | thanks
> | 
> | Uwe Brauer 
> | 
> `


-- 
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu



Re: [O] Scaling of image previews in org-mode

2016-08-10 Thread Uwe Brauer
>>> "John" == John Kitchin  writes:

   > I use this code here:
   > https://github.com/jkitchin/scimax/blob/master/scimax-org.el#L957

   > to provide inline scaling in Emacs when it is not built with imagemagick.

Hi

Could that package or parts of it also be used in other modes?

I have the problem of displaying images in latex buffers (using auctex)

The only available tool I know is iimage.el, but this package does not
allow to re-seize the displayed image. I asked about it on emacs devel
and the answer was: «please send a patch or wait», fail enough

I just attach the mail in question below in order to clarify.

,
| 
| 
| 
| I just learnt about iimage.el, which is now part of GNU emacs core. I
| like it quite a lot, the only thing which I find a bit inconvenient on
| my 12 inch Laptop is the size of the images displayed. I did not find
| any variable in which the size of images could be changed.
| 
| 
| The author's address does not work anymore, so I looked at the code it
| seems that the essential part is this:
| 
|   (if arg
|   (add-text-properties (match-beginning 0) (match-end 0)
|`(display ,(create-image file)
|   ^
|  modification-hooks
|  (iimage-modification-hook)))
| 
| 
| Now I checked that function and its documentation says
| ,
| [+]
| | 
| | create-image is an autoloaded compiled Lisp function in ‘image.el’.
| | (create-image FILE-OR-DATA  TYPE DATA-P  PROPS)
| | Create an image.
| | 
| | Images should not be larger than specified by ‘max-image-size’.
| `
| 
| 
| However 
| ,
| [+]
| | max-image-size is a variable defined in ‘C source code’.
| | Its value is 10.0
| `
| 
| So I cannot change that value easily. Anybody has an idea how to change
| the size of the displayed images?
| 
| thanks
| 
| Uwe Brauer 
| 
`




Re: [O] Scaling of image previews in org-mode

2016-08-09 Thread Johannes Brauer
thank you for the hint, I will give it a try

Johannes

> Am 08.08.2016 um 01:16 schrieb John Kitchin :
> 
> I use this code here:
> https://github.com/jkitchin/scimax/blob/master/scimax-org.el#L957
> 
> to provide inline scaling in Emacs when it is not built with imagemagick.
> 
> Johannes Brauer writes:
> 
>> Hi!
>> 
>> If I insert a jpg in my org-mode document, I can preview it but not scale 
>> its width, like so:
>> 
>> Add the following code to my init.el file:
>> (setq org-image-actual-width nil)
>> 
>> Then insert this code in my document, where I want the image to appear:
>> #+ATTR_ORG: :width 20
>> [[./test.jpg]]
>> 
>> No matter which value I give for the width argument the image appears in the 
>> buffer always in its original size.
>> 
>> However, scaling for html export with #+attr_html works fine.
> 
> Export is not the same as the inline scaling. I am not sure what happens
> with export, but the browser may be doing the scaling.
> 
>> 
>> What is going wrong?
>> 
>> (Org-mode version 8.3.4 (8.3.4-99-ga8e4a3-elpa @ 
>> /Users/johannes/Library/Preferences/Aquamacs 
>> Emacs/Packages/elpa/org-20160704/)
>> 
>> Johannes
> 
> 
> -- 
> Professor John Kitchin
> Doherty Hall A207F
> Department of Chemical Engineering
> Carnegie Mellon University
> Pittsburgh, PA 15213
> 412-268-7803
> @johnkitchin
> http://kitchingroup.cheme.cmu.edu




Re: [O] Scaling of image previews in org-mode

2016-08-07 Thread John Kitchin
I use this code here:
https://github.com/jkitchin/scimax/blob/master/scimax-org.el#L957

to provide inline scaling in Emacs when it is not built with imagemagick.

Johannes Brauer writes:

> Hi!
>
> If I insert a jpg in my org-mode document, I can preview it but not scale its 
> width, like so:
>
> Add the following code to my init.el file:
> (setq org-image-actual-width nil)
>
> Then insert this code in my document, where I want the image to appear:
> #+ATTR_ORG: :width 20
> [[./test.jpg]]
>
> No matter which value I give for the width argument the image appears in the 
> buffer always in its original size.
>
> However, scaling for html export with #+attr_html works fine.

Export is not the same as the inline scaling. I am not sure what happens
with export, but the browser may be doing the scaling.

>
> What is going wrong?
>
> (Org-mode version 8.3.4 (8.3.4-99-ga8e4a3-elpa @ 
> /Users/johannes/Library/Preferences/Aquamacs 
> Emacs/Packages/elpa/org-20160704/)
>
> Johannes


-- 
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu



Re: [O] Scaling of image previews in org-mode

2016-08-04 Thread Giri Prashanth
The following attribute worked for me to scale image:
#+attr_html: :width 100px

But I had to build emacs25 in OS X  with ImageMagick support.

On Thu, Aug 4, 2016 at 1:26 AM, Johannes Brauer 
wrote:

> I think my Aquamacs 3.2 GNU Emacs 24.4.51.2 has got ImageMagick support.
>
> Am 04.08.2016 um 00:09 schrieb Giri Prashanth :
>
> I think you need to build emacs with ImageMagick support for image
> scaling to work.
>
>
> On Wed, Aug 3, 2016 at 12:20 PM, Johannes Brauer 
> wrote:
>
>> Hi!
>>
>> If I insert a jpg in my org-mode document, I can preview it but not scale
>> its width, like so:
>>
>> Add the following code to my init.el file:
>> (setq org-image-actual-width nil)
>>
>> Then insert this code in my document, where I want the image to appear:
>> #+ATTR_ORG: :width 20
>> [[./test.jpg]]
>>
>> No matter which value I give for the width argument the image appears in
>> the buffer always in its original size.
>>
>> However, scaling for html export with #+attr_html works fine.
>>
>> What is going wrong?
>>
>> (Org-mode version 8.3.4 (8.3.4-99-ga8e4a3-elpa @ 
>> /Users/johannes/Library/Preferences/Aquamacs
>> Emacs/Packages/elpa/org-20160704/)
>>
>> Johannes
>>
>
>
>
> --
> -giri
>
>
>


-- 
-giri


Re: [O] Scaling of image previews in org-mode

2016-08-04 Thread Johannes Brauer
I think my Aquamacs 3.2 GNU Emacs 24.4.51.2 has got ImageMagick support.

Am 04.08.2016 um 00:09 schrieb Giri Prashanth 
>:

I think you need to build emacs with ImageMagick support for image scaling to 
work.


On Wed, Aug 3, 2016 at 12:20 PM, Johannes Brauer 
> wrote:
Hi!

If I insert a jpg in my org-mode document, I can preview it but not scale its 
width, like so:

Add the following code to my init.el file:
(setq org-image-actual-width nil)

Then insert this code in my document, where I want the image to appear:
#+ATTR_ORG: :width 20
[[./test.jpg]]

No matter which value I give for the width argument the image appears in the 
buffer always in its original size.

However, scaling for html export with #+attr_html works fine.

What is going wrong?

(Org-mode version 8.3.4 (8.3.4-99-ga8e4a3-elpa @ 
/Users/johannes/Library/Preferences/Aquamacs Emacs/Packages/elpa/org-20160704/)

Johannes



--
-giri



Re: [O] Scaling of image previews in org-mode

2016-08-03 Thread Giri Prashanth
I think you need to build emacs with ImageMagick support for image scaling
to work.


On Wed, Aug 3, 2016 at 12:20 PM, Johannes Brauer 
wrote:

> Hi!
>
> If I insert a jpg in my org-mode document, I can preview it but not scale
> its width, like so:
>
> Add the following code to my init.el file:
> (setq org-image-actual-width nil)
>
> Then insert this code in my document, where I want the image to appear:
> #+ATTR_ORG: :width 20
> [[./test.jpg]]
>
> No matter which value I give for the width argument the image appears in
> the buffer always in its original size.
>
> However, scaling for html export with #+attr_html works fine.
>
> What is going wrong?
>
> (Org-mode version 8.3.4 (8.3.4-99-ga8e4a3-elpa @
> /Users/johannes/Library/Preferences/Aquamacs
> Emacs/Packages/elpa/org-20160704/)
>
> Johannes
>



-- 
-giri


[O] Scaling of image previews in org-mode

2016-08-03 Thread Johannes Brauer
Hi!

If I insert a jpg in my org-mode document, I can preview it but not scale its 
width, like so:

Add the following code to my init.el file:
(setq org-image-actual-width nil)

Then insert this code in my document, where I want the image to appear:
#+ATTR_ORG: :width 20
[[./test.jpg]]

No matter which value I give for the width argument the image appears in the 
buffer always in its original size.

However, scaling for html export with #+attr_html works fine.

What is going wrong?

(Org-mode version 8.3.4 (8.3.4-99-ga8e4a3-elpa @ 
/Users/johannes/Library/Preferences/Aquamacs Emacs/Packages/elpa/org-20160704/)

Johannes