• Resolved jmeow

    (@jmeow)


    I have a large chart that I would like people to print with your plug-in. However, the image is quite large so that when fitted onto a page, it’s printed in 300DPI. The Print-o-matic plugin doesn’t seem fit it for me, and instead wants to print it on 3 separate pages. I think having a standard DPI that looks good is a common requirement, so it would be great if you could add this in your settings somewhere.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor twinpictures

    (@twinpictures)

    This is done by adding css to your print page:

    img {
        max-width: 100%;
        max-height: 100%;
    }
    
    Thread Starter jmeow

    (@jmeow)

    When you say my “print page”, does that mean the web page which the image is on, or the print settings display within the plugin? I’m not sure where to add that css.

    Plugin Contributor twinpictures

    (@twinpictures)

    In the plugin settings under Dashboard > Settings > Print-O-Matic you will see a section called print page CSS. This is the CSS that is used, not on the display page, but the page that is used to print.

    From what you explained, you have a large image that is printing across three pages… the above CSS will force the image to not expand beyond 100% of the width or height of it’s containing element.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Can’t adjust DPI?’ is closed to new replies.