
Snappy PDF reader with native-looking UI (more intuitive UI if you're a regular MS Office user, but without the bloat - Foxit Reader is also very fast compared to Adobe Reader and MS Office programs).When selecting text, Foxit Reader will scroll the window as you approach the edge, allowing you to scroll to the appropriate location in the document. The area allowed to convert is not limited by what can fit on your screen (Faststone can scroll down only, not left and right).


Image captured of the article by the extensionĭisclaimer: I am not in any affiliated with this extension or author.Wired article (for archival purposes, this link points to theĪ capture I made on the same day as the image captured by the extension).It's created by an independent developer, and in addition to being found on the Chrome Web Store, there's also a MIT-licensed version of it on GitHub, as well as a premium offering. Resized_image = resize_image(initial_image, area=0.Not explicitly "printing", but this Chrome extension I found to be fantastic for the problem of "rendered webpage -> png". import cv2ĭef resize_image(img, area=0.0, window_h=0, window_w=0): If an input is given for all parameters then 'area' is prioritised. If no area is input then it will use a defined height and width (window_h, window_w) of the window size you would like the image to fit inside. I've also made a similar function where area is still a parameter but so is window height and window width. Img = cv2.resize(img, (0, 0), fx=multiplier, fy=multiplier) The example shows it displayed at quarter the screen size.

Use the area variable to change the max screen area you want the image to be able to take up. It will automatically adjust depending on your screen size and the size of the image. Enter the new width or height that you want the image to be. For example, resizing your image to 50 will decrease it to half its original size, while 200 will double its size. This code will resize the image so that it can retain it's aspect ratio and only ever take up a specified fraction of the screen area. Select 'Pixels' to dictate the exact size of the resized image, or select Percentage to resize it by a specific proportion.
