Larger Pics Accepted/Tank Requirements?

A historical forum for issues reported in the suggestions and bugs forum that have been subsequently fixed or resolved.
Post Reply
User avatar
nvcichlids
Posts: 1855
Joined: 22 Jul 2008, 20:48
My images: 6
My cats species list: 44 (i:3, k:0)
My aquaria list: 1 (i:1)
My BLogs: 6 (i:4, p:224)
Spotted: 2
Location 1: Milwaukee, WI
Location 2: Waimate, New Zealand

Larger Pics Accepted/Tank Requirements?

Post by nvcichlids »

I know I am not the only person, but everytime I try to up load pictures, they get denied because they are too large. I have tried to scale them down several times, but have yet to get pics to work for my tank images. Any help/ suggestions with this would really help me (and I think others)

I think it might be also helpful to have a tank size required to keep each species of catfish. I know you can read that a fish gets 6", but they may be too active of a fish to fit in a 48" tank. I just feel that this would help people choose what catfish species they can actually keep in their tanks (not just basing it on the size of the catfish itself)

Thanks,

NV
What's your favorite Dressing~~
User avatar
Dave Rinaldo
Posts: 2178
Joined: 31 Dec 2002, 10:49
I've donated: $601.00!
My images: 238
My cats species list: 64 (i:0, k:0)
Spotted: 97
Location 2: Austin, Texas

Re: Larger Pics Accepted/Tank Requirements?

Post by Dave Rinaldo »

nvcichlids wrote:they get denied because they are too large.
Have you resized them down to 512 KiB or less?
toobig.GIF
toobig.GIF (2.42 KiB) Viewed 1317 times
This pic is 412 KiB
DSC_0644c.jpg
Contribute to Planet Catfish!

Use this Amazon.com link to benefit Planet Catfish!!
Marc van Arc
Expert
Posts: 5038
Joined: 19 Dec 2004, 14:38
My articles: 20
My images: 61
My catfish: 9
Spotted: 35
Location 2: Eindhoven, The Netherlands

Re: Larger Pics Accepted/Tank Requirements?

Post by Marc van Arc »

nvcichlids wrote:Any help/ suggestions with this would really help me (and I think others)
It may be very obvious, but as you asked for any help: did you save them ("Save as") after resizing? I've been struggling with that for some time, thinking resizing itself would be sufficient and then finding out that the pictures kept being denied..... :wink:
User avatar
nvcichlids
Posts: 1855
Joined: 22 Jul 2008, 20:48
My images: 6
My cats species list: 44 (i:3, k:0)
My aquaria list: 1 (i:1)
My BLogs: 6 (i:4, p:224)
Spotted: 2
Location 1: Milwaukee, WI
Location 2: Waimate, New Zealand

Re: Larger Pics Accepted/Tank Requirements?

Post by nvcichlids »

I guess, I don't realize where to look to see how big the picture actually is when I save it? And that save as thing, very possible problem lol. I will work on it when I have time and see if I still have problems.

BTW, is the other idea about tank requirements a good idea?
What's your favorite Dressing~~
Bas Pels
Posts: 2918
Joined: 21 Dec 2006, 20:35
My images: 1
My cats species list: 28 (i:0, k:0)
Spotted: 8
Location 1: the Netherlands
Location 2: Nijmegen the Netherlands
Interests: Central American and Uruguayan fishes

Re: Larger Pics Accepted/Tank Requirements?

Post by Bas Pels »

Using windows, I see the size of any file going over it with the mouse. However, if the computer is still working, this does not happen. Alternatively, you could click on view and than select details.
cats have whiskers
User avatar
Jools
Expert
Posts: 16278
Joined: 30 Dec 2002, 15:25
My articles: 198
My images: 941
My catfish: 237
My cats species list: 88 (i:235, k:1)
My BLogs: 7 (i:10, p:167)
My Wishlist: 23
Spotted: 451
Location 1: Middle Earth,
Location 2: Scotland
Interests: All things aquatic, Sci-Fi, photography and travel. Oh, and beer.
Contact:

Re: Larger Pics Accepted/Tank Requirements?

Post by Jools »

The "hover over" trick won't work in all versions of windows. To be sure, right click on the picture and select properties.

As to the question about a recommended tank size, we'll, it's a lot of work and quite subjective. For example, what you you put for something like a red tailed cat.

Jools
User avatar
MatsP
Posts: 21038
Joined: 06 Oct 2004, 13:58
My articles: 4
My images: 28
My cats species list: 117 (i:33, k:0)
My aquaria list: 10 (i:8)
My BLogs: 4 (i:0, p:164)
Spotted: 187
Location 1: North of Cambridge
Location 2: England.

Re: Larger Pics Accepted/Tank Requirements?

Post by MatsP »

Jools wrote:As to the question about a recommended tank size, we'll, it's a lot of work and quite subjective. For example, what you you put for something like a red tailed cat.
Would something like this work (in pseudo-code):

Code: Select all

    len = thisfish.SL;
    if (len == 0)
    {
        display("Size unknown, can not recomend aquarium size");
        return;
    }
    if (len < 600)
    {
       if (len < 100)
       {
          len = 100;
       }
       size = { 4 * len, 2 * len, 2 * len };
       displaysize(size);
    }
    else
    {
       display("Fishes of size over 600mm are unsuitable for standard aquariums.");
    }
In displaysize we could simply display the size in mm/inches, or have lists of standard sizes [easy in the US traditional tank, not so easy in Europe - perhaps rounding to even 100mm would help making it easier].

Of course, there would have to be a note saying "this is a minimum recommended size, and active fish may need more space".

--
Mats
User avatar
Jools
Expert
Posts: 16278
Joined: 30 Dec 2002, 15:25
My articles: 198
My images: 941
My catfish: 237
My cats species list: 88 (i:235, k:1)
My BLogs: 7 (i:10, p:167)
My Wishlist: 23
Spotted: 451
Location 1: Middle Earth,
Location 2: Scotland
Interests: All things aquatic, Sci-Fi, photography and travel. Oh, and beer.
Contact:

Re: Larger Pics Accepted/Tank Requirements?

Post by Jools »

I'm not sure that would work Mats, I mean, take 6 Corydoras robustus and 6 Corydoras habrosus - using your code they need the same amount of space! The factors of interspecies aggression and also "activeness" are required. I can add the later as a 1-5 type field in the catelog, but then someone will need to go through all entries and set that value.

Even at a genus level, that's 350 odd bits of data.

Jools
User avatar
MatsP
Posts: 21038
Joined: 06 Oct 2004, 13:58
My articles: 4
My images: 28
My cats species list: 117 (i:33, k:0)
My aquaria list: 10 (i:8)
My BLogs: 4 (i:0, p:164)
Spotted: 187
Location 1: North of Cambridge
Location 2: England.

Re: Larger Pics Accepted/Tank Requirements?

Post by MatsP »

Well, my "minimum size" was just an example to avoid coming up with tanks that are silly small size - e.g. a 10 x 5 x 5 cm - that would make a good photo tank, but it's not an aquarium, right? 40 x 20 x 20cm is about as small tanks go - they may vary a bit in shape, but not massively.

My suggestion was mainly to show that there are ways to deal with very small and large fish.

But I agree, activity level, tolerance to water pollution and many other things will have to be taken into account too.

--
Mats
User avatar
MatsP
Posts: 21038
Joined: 06 Oct 2004, 13:58
My articles: 4
My images: 28
My cats species list: 117 (i:33, k:0)
My aquaria list: 10 (i:8)
My BLogs: 4 (i:0, p:164)
Spotted: 187
Location 1: North of Cambridge
Location 2: England.

Re: Larger Pics Accepted/Tank Requirements?

Post by MatsP »

I'm closing this thread, as there is a second thread requesting the same thing, and the title is more appropriate...

http://www.planetcatfish.com/forum/view ... =3&t=27757

--
Mats
Post Reply

Return to “All Resolved Issues”