|
|
|
@@ -1,6 +1,7 @@ |
|
|
|
<?php |
|
|
|
require_once '../../App/bootstrap.php'; |
|
|
|
|
|
|
|
|
|
|
|
$attachId = isset($_GET['attach_id']) ? $_GET['attach_id'] : 0; |
|
|
|
if (!$user->isLogged()) { |
|
|
|
//exit(0); |
|
|
|
@@ -11,25 +12,46 @@ if (!$user->isLogged()) { |
|
|
|
<!DOCTYPE html> |
|
|
|
<html lang="it"> |
|
|
|
<head> |
|
|
|
|
|
|
|
<meta charset="UTF-8"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
|
|
<link rel="stylesheet" href="/css/font-awesome.min.css"> |
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> |
|
|
|
<title>Dicom</title> |
|
|
|
|
|
|
|
<style> |
|
|
|
html, body {width: 100%; height:100%; background-color: black; display:flex; justify-content:center;} |
|
|
|
#dicomImage { |
|
|
|
width: 600px; |
|
|
|
width: 100%; |
|
|
|
height: 600px; |
|
|
|
position: relative; |
|
|
|
} |
|
|
|
|
|
|
|
#toolBar{ |
|
|
|
position: fixed; |
|
|
|
background-color: white; |
|
|
|
color:black; |
|
|
|
width:100%; |
|
|
|
height: 50px; |
|
|
|
z-index:10000; |
|
|
|
padding:10px; |
|
|
|
|
|
|
|
} |
|
|
|
</style> |
|
|
|
</head> |
|
|
|
<body> |
|
|
|
|
|
|
|
<div id="toolBar"> |
|
|
|
<button type="button" class="btn btn-outline-dark btn-sm" id="activateZoom"><i class="fa fa-search-plus" aria-hidden="true"></i></button> |
|
|
|
<button type="button" class="btn btn-outline-dark btn-sm" id="activatePan">Small button</button> |
|
|
|
<button type="button" class="btn btn-outline-dark btn-sm" id="activateWwwc"><i class="fa fa-adjust" aria-hidden="true"></i></button> |
|
|
|
<button type="button" class="btn btn-outline-dark btn-sm" id="activateLength"><i class="fa fa-arrows-h" aria-hidden="true"></i></button> |
|
|
|
</div> |
|
|
|
<main> |
|
|
|
<section> |
|
|
|
<div id="dicomImage"></div> |
|
|
|
<div id="dicomImage"> |
|
|
|
|
|
|
|
</div> |
|
|
|
</section> |
|
|
|
</main> |
|
|
|
|