Ask Your Question
0

Scaling images

asked 2020-03-25 22:48:17 +0200

nooniensoong97 gravatar image

Hi,

I am trying to figure out how to create say an 800 x 600 image that will be able to fit different size sheets of paper. Eventually I would like to expand this algorithm to include all the other screen resolutions. However, when Sage generates an image there is the boarder of white. So I have to go in and crop it out with image editing software. This then changes the pixel dimension. I would like to get a ratio of 1:1 between the m x n image and the image generated. I have figured out this ratio when dpi value is at 100, and it turns out that a dpi value of about 172 will get me really close to creating an image of 800 x 600. However, the actual image is roughly 795 x 596, and if I use 173 it turns out to be 801 x 600.

I am wondering if someone has already created an algorithm to print a 1:1 scale for screen resolution to printed image?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2020-03-26 09:20:47 +0200

Sébastien gravatar image

updated 2020-03-26 09:26:04 +0200

You may do:

sage: p = plot(sin(x), (x, -2*pi, 2*pi))
sage: p.show(figsize=[8,1])

to change the scaling:

image description

The method save accepts the same argument:

sage: p.save('image.png', figsize=[8,1])

To do further changes on the figure, you may get the matplotlib object behind the 2d Graphics object and use matplotlib possibilities:

sage: figure = p.matplotlib(figsize=[8,6])
sage: figure
<Figure size 800x600 with 1 Axes>
sage: type(figure)
<class 'matplotlib.figure.Figure'>
sage: axes = figure.axes[0]
edit flag offensive delete link more

Comments

Thanks for the advise. However, when I tried using figsize that also includes the white border around the image. I am not wanting to include that border. Plus I had to use figsize = [9,7] to get close to 800 x 600, and with using a dpi value of 96. This gave me an image of 795 x 595 after cropping out the white border. I might have to live with this setup since both values are really close to the target values.

nooniensoong97 gravatar imagenooniensoong97 ( 2020-03-26 22:46:55 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-03-25 22:48:17 +0200

Seen: 307 times

Last updated: Mar 26 '20