Documentation
Pricing
evopdf.com
Select Media Type When Converting HTML to PDF
EVO HTML to PDF Converter allows you to select the media type for which you want to render HTML to PDF. In this demo you can choose between rendering for screen or for print media types.
Convert HTML with @Media Rules
Convert URL or Local File
HTML String with @Media Rules
<!DOCTYPE html> <html> <head> <title>Media Type Rules</title> <link href="styles/webfonts.css" type="text/css" rel="stylesheet"> <style type="text/css"> /* Set the body text family and font size both for screen and print*/ body { width: 1000px; margin: 10px; font-family: Verdana, sans-serif; font-size: 18px; } /* Set the title text font size and weight both for screen and print*/ .title { font-size: 24px; font-weight: bold; } @media screen { /* Set a background color only when the HTML page is displayed on screen*/ body { background-color: aliceblue; } /* Use blue to write the text on screen*/ p { color: darkblue; } } @media print { /* Hide images when priting*/ img { display: none; } /* Use black to write the text on screen*/ p { color: black; } } @media screen,print { /* Set the paragraph text family and font size both for screen and print*/ p { font-family: Verdana, sans-serif; font-size: 20px; } } </style> </head> <body> <span class="title">Media Type Rules</span><br /> <br /> This document have different styles when it is displayed on the screen and when it is printed. You can instruct the converter to use the style you want setting its <i>MediaType</i> property.<br /> <br /> <b>The image below is visible only when the selected media type is 'screen' and is hidden when the selected media type is 'print'</b>:<br /> <br /> <img alt="Logo Image" src="img/logo.jpg" /> <br /> <br /> <b>The text below will be dark blue when the selected media type is 'screen' and black when the selected media type is 'print':</b> <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p> </body> </html>
Base URL
HTML Page to Convert URL
Select Media Type
Screen
Print
Convert HTML to PDF