larger images
About 4 times the current size when you click on an image would be good too.
Displaying 2x Magnified Images
An option/link is added to the PHP Image page of the PacsOne Server web interface to display 2x magnified image, in addition to the current full-size display of the original image.
This feature will be available in the next build, which is version 1.0.0.8.
This feature will be available in the next build, which is version 1.0.0.8.
increase image
if you put the line of code befoe that last if statement in showimage.php
imagick_magnify($jpg);
so the last lines of the code look like this;
//modify image
imagick_magnify($jpg);
if (!( $image_data = imagick_image2blob($jpg)))
{
$reason = imagick_failedreason($jpg);
$description = imagick_faileddescription( $jpg );
print "imagick_image2blob() failed<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n";
exit;
}
header("Content-type: " . imagick_getmimetype($jpg));
print $image_data;
?>
it will double the size of the image, also if you want to do any other modifiying of the image this would be the place for it. You can get a list of the commands at http://pecl.php.net/package/imagick. If you down load the file and then look at imagick.c you will see all of the available commands.
imagick_magnify($jpg);
so the last lines of the code look like this;
//modify image
imagick_magnify($jpg);
if (!( $image_data = imagick_image2blob($jpg)))
{
$reason = imagick_failedreason($jpg);
$description = imagick_faileddescription( $jpg );
print "imagick_image2blob() failed<BR>\nReason: $reason<BR>\nDescription: $description<BR>\n";
exit;
}
header("Content-type: " . imagick_getmimetype($jpg));
print $image_data;
?>
it will double the size of the image, also if you want to do any other modifiying of the image this would be the place for it. You can get a list of the commands at http://pecl.php.net/package/imagick. If you down load the file and then look at imagick.c you will see all of the available commands.
This feature will be added in the next version of PacsOne (version 1.0.0.
.
If you can't wait for the next release or you want to update the web user interface only, you can download the PHP.ZIP file from the download page:
http://www.pacsone.net/download.htm

If you can't wait for the next release or you want to update the web user interface only, you can download the PHP.ZIP file from the download page:
http://www.pacsone.net/download.htm
Re: larger images
Version 1.0.0.10 has added new online image processing tools, including Image Resize where you can press the 2x button to zoom it multiple times or specify the X and Y size in pixels and resize it.
marneson wrote:About 4 times the current size when you click on an image would be good too.