Automatic Picture Resize proposal Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
+20
Shine
ella_trading
bajzAKBD
Runescape4
abigail
13gentj
Doctor Inferno
magicm00n
ParadiseKid
DeathSoul
thunderboyx
:)tayne:)
Blofeld
bryan739182
Rok
Master Marc
Dreamlimix
Tarogasini
Acid
ImProviser
24 posters

    Automatic Picture Resize proposal

    Poll

    Do you like this suggestion?

    [ 40 ]
    Automatic Picture Resize proposal Bar_left93%Automatic Picture Resize proposal Bar_right [93%] 
    [ 3 ]
    Automatic Picture Resize proposal Bar_left7%Automatic Picture Resize proposal Bar_right [7%] 

    Total Votes: 43
    Poll closed
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Automatic Picture Resize proposal

    Post by ImProviser Wed 18 Feb 2009 - 10:31

    If the picture is larger than XXX*XXX px then it will be resized to a smaller version with the upper text in this format: (align left) Size:XXX*XXX, (align right) Click on the image to view it in the full size.

    Automatic Picture Resize proposal Proposal
    How it really looks like on one of the forums:
    Automatic Picture Resize proposal Proposal2

    See the upper pictures ^
    Acid
    Acid
    Forumember


    Male Posts : 130
    Reputation : 0
    Language : English
    Location : Australia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Acid Wed 18 Feb 2009 - 10:53

    Great idea!!
    I voted yes.
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Wed 18 Feb 2009 - 19:15

    anyone else with the votes :S?
    Tarogasini
    Tarogasini
    Active Poster


    Male Posts : 1351
    Reputation : 9
    Language : English
    Location : Simplicity is my style.

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Tarogasini Wed 18 Feb 2009 - 19:32

    Sure, why not. That would help to those who dont know how to resize pics manually.
    Dreamlimix
    Dreamlimix
    Forumember


    Male Posts : 761
    Reputation : 23
    Language : Cheese
    Location : The Seventh Sky

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Dreamlimix Wed 18 Feb 2009 - 19:35

    I voted yes!
    Master Marc
    Master Marc
    Hyperactive


    Male Posts : 3661
    Reputation : 47
    Language : English and Spanish.

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Master Marc Wed 18 Feb 2009 - 19:45

    I voted yes
    Rok
    Rok
    Energetic


    Male Posts : 6823
    Reputation : 234
    Language : idk

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Rok Wed 18 Feb 2009 - 20:31

    Great Idea! Yes Very Happy.
    avatar
    bryan739182
    Forumember


    Male Posts : 58
    Reputation : 0
    Language : english
    Location : in a room no more details!

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by bryan739182 Wed 18 Feb 2009 - 21:24

    yes!
    avatar
    Blofeld
    Active Poster


    Male Posts : 1088
    Reputation : 18
    Language : ............

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Blofeld Wed 18 Feb 2009 - 21:37

    I voted yes good suggestion. Smile
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Wed 18 Feb 2009 - 22:37

    Tarogasini wrote:Sure, why not. That would help to those who dont know how to resize pics manually.

    I must disagree with this... If you want to upload high res picture and not to use thumbail as size of it (its really small) than this is the best way (my modest opinion) to do so... Wink

    Thanks for the votes
    :)tayne:)
    :)tayne:)
    Forumember


    Male Posts : 794
    Reputation : 35
    Language : English

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by :)tayne:) Wed 18 Feb 2009 - 22:40

    great idea > voted yes!
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Thu 19 Feb 2009 - 0:09

    Code:
    <script type="text/javascript">
        function podImageClass() {

          if ( !(this instanceof podImageClass) ) return new podImageClass();

          var browser;

          var podImage;
          var podImageHeight;
          var podImageWidth;
          var podImageAspect;

          var debounceResize = 0;
          var haveResized = 0;

          function __setViewOriginalLink(displayBool) {
              var voLink = document.getElementById("podImageViewOriginalLink");
              if (displayBool) {
                  voLink.innerHTML =
                      '<a href="javascript:podImage.setOriginalSize()">' +
                      "Scale to Original Size" + "</a>";
              } else {
                  voLink.innerHTML = ' ';
              }
          }

          function _setText () {
              var podImageText = '"<$MTEntryTitle$>"' + " / " +
                  "Click For Previous";
              podImage.alt = podImageText;
              podImage.title = podImageText;
          }

          function _setSize() {
              var myWidth = 0, myHeight = 0;
           
              if (debounceResize) {
                debounceResize = 0;
                return;
              }

              if( typeof( window.innerWidth ) == 'number' ) {
                //Non-IE
                myWidth = window.innerWidth;
                myHeight = window.innerHeight;
              } else if( document.documentElement &&
                ( document.documentElement.clientWidth || 
                    document.documentElement.clientHeight ) ) {
                //IE 6+ in 'standards compliant mode'
                myWidth = document.documentElement.clientWidth;
                myHeight = document.documentElement.clientHeight;
              } else if( document.body && ( document.body.clientWidth ||
                    document.body.clientHeight ) ) {
                //IE 4 compatible
                myWidth = document.body.clientWidth;
                myHeight = document.body.clientHeight;
              }

              // Only do the resize if we've done this before or if our
              // image is greater than their window size 64px of top margin.
              if ( !( haveResized || ((podImageHeight + 64) > myHeight) ) ) {
                return;
              }

              // allow 128px margins on top and bottom:
              var newImageHeight = myHeight - ( 2 * 128 );

              if ( (podImageHeight + 64) < myHeight ) {
                // Just use original width and height;
                _setOriginalSize();
              } else {
                // Downscale:
                if (newImageHeight > 0) {
                    var newImageWidth = newImageHeight * podImageAspect;
                    podImage.width = newImageWidth;
                    podImage.height = newImageHeight;
                }

                __setViewOriginalLink(true);
              }

              haveResized = 1;
          }

          function _setOriginalSize() {
              // We have to play with the onresize handler to work
              // around IE sending spurious events.
              window.onresize = null;
              podImage.width = podImageWidth;
              podImage.height = podImageHeight;
              __setViewOriginalLink(false);
              if (browser == "MSIE") {
                debounceResize = 1;
              }
              window.onresize = _setSize;
          }

          function _checkIt(string)
          {
              var detect = navigator.userAgent.toLowerCase();
              place = detect.indexOf(string) + 1;
              thestring = string;
              return place;
          }

          function _init() {
              if (_checkIt('msie')) browser = "MSIE"
              else browser = "Other";

              podImage = document.getElementById("podImage");
              podImageWidth = podImage.width;
              podImageHeight = podImage.height;
              podImageAspect = (podImageHeight > 0) ?
                (podImageWidth / podImageHeight) : 0;
          }

          this.init = _init;
          this.setText = _setText;
          this.setSize = _setSize;
          this.setOriginalSize = _setOriginalSize;

          _init();
        }

        <!-- setup podImage class: -->
        var podImage;
        addLoadEvent(function() {
                podImage = podImageClass();
                podImage.setText();
                podImage.setSize();
                window.onresize = podImage.setSize;
        });

    </script>

    And i have NO idea could that be usefull or where should it be placed :/

    anyways it looks like this

    http://jordan.husney.com/
    thunderboyx
    thunderboyx
    Forumember


    Male Posts : 281
    Reputation : 1
    Language : English
    Location : On my computer

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by thunderboyx Thu 19 Feb 2009 - 0:59

    Voted yes =D
    DeathSoul
    DeathSoul
    Forumember


    Male Posts : 369
    Reputation : 1
    Language : ENGLISH
    Location : NO PM SUPPORT

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by DeathSoul Thu 19 Feb 2009 - 13:10

    Voted yes we need this!
    :)tayne:)
    :)tayne:)
    Forumember


    Male Posts : 794
    Reputation : 35
    Language : English

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by :)tayne:) Thu 19 Feb 2009 - 17:07

    13 people have voted yes and 0 voted no. We might get this feature if more people vote!
    Tarogasini
    Tarogasini
    Active Poster


    Male Posts : 1351
    Reputation : 9
    Language : English
    Location : Simplicity is my style.

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Tarogasini Thu 19 Feb 2009 - 18:36

    There is 18.100 members registered on forumotion. What are the odds we will get this, even if 100 more people vote yes ? Sad
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Sat 21 Feb 2009 - 2:16

    bump
    ParadiseKid
    ParadiseKid
    Forumember


    Male Posts : 284
    Reputation : 0
    Language : English

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ParadiseKid Sat 21 Feb 2009 - 2:18

    How is Forumotion going to pull this off? Your images on hosted on ServIMG.com. So really, this is a suggestion for ServIMG.

    I need more convincing before I vote.
    magicm00n
    magicm00n
    Active Poster


    Female Posts : 1305
    Reputation : 217
    Language : English
    Location : The support forum of Forumotion

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by magicm00n Sat 21 Feb 2009 - 2:37

    Voted yes. Smile
    Doctor Inferno
    Doctor Inferno
    Active Poster


    Male Posts : 1331
    Reputation : 30
    Language : GeekPolice
    Location : Singapore

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Doctor Inferno Sat 21 Feb 2009 - 9:35

    Tarogasini wrote:There is 18.100 members registered on forumotion. What are the odds we will get this, even if 100 more people vote yes ? Sad

    Even if everyone were to vote, the techs would simply choose which suggestion they like, not what we like.
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Sat 21 Feb 2009 - 10:49

    ParadiseKid wrote:How is Forumotion going to pull this off? Your images on hosted on ServIMG.com. So really, this is a suggestion for ServIMG.

    I need more convincing before I vote.

    this isn't up to servimg... Wink if you use [code]Automatic Picture Resize proposal  & codes it automatically resizes the image to the allowed size... proportional of course... I've seen it on couple forums so its not up to servimg Wink
    ParadiseKid
    ParadiseKid
    Forumember


    Male Posts : 284
    Reputation : 0
    Language : English

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ParadiseKid Sat 21 Feb 2009 - 11:47

    Sorry, I'm not with it. Can you explain more how it works?
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Sat 21 Feb 2009 - 12:03

    If the picture has width of lets say.... 1024 (height 768) and the max allowed is 640 (that you set in adm panel) the picture will be resized to 640x480 so it keeps the proportions of the larger picture... it looks same as in this pic:

    http://www.dodaj.rs/f/3f/Cj/2HwmRVji/proposal2.png

    do you understand now ?
    ParadiseKid
    ParadiseKid
    Forumember


    Male Posts : 284
    Reputation : 0
    Language : English

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ParadiseKid Sat 21 Feb 2009 - 21:16

    Oh OK. I get it now, and I can see the usefulness of it now too.

    Voted Yes.
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Mon 23 Feb 2009 - 0:58

    B-U-M-P
    13gentj
    13gentj
    Forumember


    Posts : 210
    Reputation : 0
    Language : english

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by 13gentj Mon 23 Feb 2009 - 1:13

    Well I have not voted because the people who are more expirienced who know how to resize our pictures won't be able to get them the size that we want. I would vote yes if it was optional. I do think that this would be good for avatars that are too big. But until you explain me the questions that I have asked I will not vote.
    abigail
    abigail
    Forumember


    Female Posts : 163
    Reputation : 0
    Language : english
    Location : Moving to V-Bulletin!

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by abigail Mon 23 Feb 2009 - 1:27

    I voted yes,I think this is a good idea.
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Mon 23 Feb 2009 - 9:08

    13gentj wrote:Well I have not voted because the people who are more expirienced who know how to resize our pictures won't be able to get them the size that we want. I would vote yes if it was optional. I do think that this would be good for avatars that are too big. But until you explain me the questions that I have asked I will not vote.

    lol have you seen the image i posted in the first post bwi

    when you click it it will open the image in the full size (the image size that you wanted as you said...) just like the spoiler.... it doesn't show untill you click it... when you click it, it shows... simple as that... just here when you click it, it will show in its full size (or the size you resized image to.) ...

    Don't know what could be the bad side of this suggestion, this is really useful :/ vote everyone Rolling Eyes
    Runescape4
    Runescape4
    Forumember


    Male Posts : 42
    Reputation : 0
    Language : Australian

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by Runescape4 Mon 23 Feb 2009 - 10:14

    Well,
    You might think i am dumb but i voted no.
    Because you could just change the Seize of the image on like
    bannermaker.com
    Photoshop.com

    I voted no.
    If there was a maybe i would of voted.
    ImProviser
    ImProviser
    Forumember


    Male Posts : 617
    Reputation : 23
    Language : Serbian, English, Deutsch
    Location : Kraljevo, Serbia

    Automatic Picture Resize proposal Empty Re: Automatic Picture Resize proposal

    Post by ImProviser Mon 23 Feb 2009 - 10:44

    Runescape4 wrote:Well,
    You might think i am dumb but i voted no.
    Because you could just change the Seize of the image on like
    bannermaker.com
    Photoshop.com

    I voted no.
    If there was a maybe i would of voted.

    ROFL i didn't think of a banner in signature only OMG !

    i was thinking of resizing all the pics on forum the banner was just an example -_-' omg can't believe it