- Adjust the image size to the terminal cell size. - If the image size is specified in html source, skip to load the image.

This commit is contained in:
Araki Ken
2013-02-02 16:32:37 +09:00
committed by Tatsuya Kinoshita
parent f4268d8d18
commit 147ef0048b
3 changed files with 55 additions and 33 deletions

2
fm.h
View File

@@ -1177,9 +1177,11 @@ global char *ssl_forbid_method init("2, 3");
global int is_redisplay init(FALSE);
global int clear_buffer init(TRUE);
global double pixel_per_char init(DEFAULT_PIXEL_PER_CHAR);
global int pixel_per_char_i init(DEFAULT_PIXEL_PER_CHAR);
global int set_pixel_per_char init(FALSE);
#ifdef USE_IMAGE
global double pixel_per_line init(DEFAULT_PIXEL_PER_LINE);
global int pixel_per_line_i init(DEFAULT_PIXEL_PER_LINE);
global int set_pixel_per_line init(FALSE);
global double image_scale init(100);
#endif