Search…

X3 Photo Gallery Support Forums

Search…
 
frank3427
Topic Author
Posts: 8
Joined: 25 Nov 2007, 11:12

Megapixels

29 Jul 2008, 13:52

what is the largest megapixel picture that one can upload, if I recall correctly in 1.8 it was 10 Megapixels. I now have 12 Megapixels and I have been looking at a larger one.

frank
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

29 Jul 2008, 16:18

We use php gd library for scaling it uses php memory so you can load image as big as you can give to php process to handle, and its quite cpu consuming to resize images that big.

What about filesize its limited at 8Mb for admin's uploader, thats actually editable but it's barely thumbnailable by php.

Using ftp access you can upload images as big as flash can handle - I do not have exact data on that, but wouln't recommend upload images directly from camera.
firedev.com
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Megapixels

30 Jul 2008, 01:17

frank3427 wrote:what is the largest megapixel picture that one can upload, if I recall correctly in 1.8 it was 10 Megapixels. I now have 12 Megapixels and I have been looking at a larger one.
I have a few comments and questions related to your question.

#1 Although you can upload large images, Imagevue will usually not be able to automatically create thumbnails for very large images like you mention. The reason for this is because servers have restrictions on memory allocation. You would have to create thumbnails manually, unless you controls/own your own server where you can turn off memory allocation restrictions.

#2 Flash only supports images that are 2000px 2000px or smaller. Images larger than this, seem to just become white. This is nothing we can change in Imagevue as it is part of the Flash player. I believe it is a restriction related to memory usage.

- I do need to question why you would want to upload 12megapixel photos for Imagevue. Filesizes are way beyond anything a visitor would want to wait for, and the image will need to be scaled down drastically to display in the screen anyway. Seems like a waste of space, bandwidth and visitor-patience to me.
 
frank3427
Topic Author
Posts: 8
Joined: 25 Nov 2007, 11:12

30 Jul 2008, 13:49

I am a student and a few of use are sharing raw pictures, we understand the issue with size and time for downloading.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

30 Jul 2008, 23:21

frank3427 wrote:I am a student and a few of use are sharing raw pictures, we understand the issue with size and time for downloading.
There is a setting in V2 "altimage" which allows you to create a subfolder in each imagefolder, where you can maintain large/original images. As described in the themeConfig.xml:
Code
Sets an extended folder path '_altimage/' to open a different version of selected image. Effects the functions popup, window and download image
This means you need to maintain two copies of every image: 1 standard folder with images resized for viewing on the web/imagevue, and 2. a subfolder where you can keep the originals/large size images. The resized images will display in imagevue, but when for example clicking download, or "open in window", it will open the original full size image.
 
rune
Posts: 9
Joined: 17 Jul 2008, 15:25

06 Aug 2008, 16:43

mjau-mjau wrote:
frank3427 wrote:I am a student and a few of use are sharing raw pictures, we understand the issue with size and time for downloading.
There is a setting in V2 "altimage" which allows you to create a subfolder in each imagefolder, where you can maintain large/original images. As described in the themeConfig.xml:
Code
Sets an extended folder path '_altimage/' to open a different version of selected image. Effects the functions popup, window and download image
This means you need to maintain two copies of every image: 1 standard folder with images resized for viewing on the web/imagevue, and 2. a subfolder where you can keep the originals/large size images. The resized images will display in imagevue, but when for example clicking download, or "open in window", it will open the original full size image.
Ahh perfect. This is close to the solution I'm looking for. If we now had the chance to put full size pictures directly into the gallery, and then the software automagically made a resized copy of the pictures for viewing and automagically was putting the original image into _altimage.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

08 Aug 2008, 00:42

rune wrote:Ahh perfect. This is close to the solution I'm looking for. If we now had the chance to put full size pictures directly into the gallery, and then the software automagically made a resized copy of the pictures for viewing and automagically was putting the original image into _altimage.
Unfortunately, this takes us back to square 1. Unless you run your own server, Imagevue simply can not resize your full size images.

You would have to deploy this manually:

1. Create your new folder.
2. Create a subfolder "_altimage" and set it to "hidden" in admin.
3. Upload resized images to the original folder, and upload full-size images to the _altimage folder.
4. Enable the altimage setting.