Asi es solo en este caso tu CSS no tiene una clase, si no mas bien un descriptor para el ID, debería ser algo así:
Código php:
Ver original<?php
$image = $_GET['image'];
?>
<html>
<head>
<title>pagina</title>
<style type="text/css">
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.the_image {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}
</style>
</head>
<body>
<img src="<?php echo $image; ?>" class="the_image" />
</body>
</html>
Si tienes más dudas te recomiendo que veas como trabaja CSS e investigues, en el foro de CSS hay mucha información.
Saludos.