1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Automatic Image Resizer for Wordpress?

Discussion in 'WordPress' started by M3rC, Dec 19, 2008.

  1. #1
    Hey, I've spent the last 3 hours looking for this and with no luck :(

    What I want to do is rescale every image posted within the Wordpress article to be resized (both scaled up/down) to a specific dimension?

    Either a plugin/CSS Div tag can do this, I just don't know how :(

    I need a plugin/script/code whatever, that will work with Wordpress.
    I've tried heaps of the plugins but they are resize the "larger" images and scale them down, I want that AND smaller images to be rescaled to that specific dimensions.

    Thanks for any help! :)
    m3rc
     
    M3rC, Dec 19, 2008 IP
  2. BANAGO

    BANAGO Active Member

    Messages:
    456
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #2
    You don't need a plugin to do that, this is handled by WordPress's text editor. Just click on the image, drag it form the corner and scale it. Very easy.
     
    BANAGO, Dec 21, 2008 IP
  3. appleiphone

    appleiphone Active Member

    Messages:
    546
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    80
    #3
    I think he copied post from other website (or blog) so he need this plugin :)
     
    appleiphone, Dec 21, 2008 IP
  4. M3rC

    M3rC Peon

    Messages:
    1,493
    Likes Received:
    48
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Huh? Copied post? What are you talking about??

    I've got about 3 images on each posts, and about 56 posts. I just didn't want to manually do it one by one - seems like a mindless tasks, that's why I was looking for a plugin.

    AppleIphone, your words insult me. I would never copy off someone's work :(
     
    M3rC, Dec 21, 2008 IP
  5. Guttu

    Guttu Peon

    Messages:
    728
    Likes Received:
    88
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I can do it for some $$$.
     
    Guttu, Dec 21, 2008 IP
  6. maddest_lover

    maddest_lover Guest

    Messages:
    1,110
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    0
    #6
    As I think to rescale smallers images is not possible yet, I have not seen this before, but scaling an image to smaller is not a big deal just go to settings>>miscellaneous there u will find different sizes. When u upload ur image then it will as u to choose one out of thumbnail or medium size. Just try it u will be fine.
     
    maddest_lover, Dec 22, 2008 IP
    sainshea likes this.
  7. M3rC

    M3rC Peon

    Messages:
    1,493
    Likes Received:
    48
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Hmm..never mind guys :)

    I've decided to leave it like that, resizing 100+ images on EXTREMELY SLOW internet, is rather frustrating.

    Thanks for everyones input, appreciate it :)

    regards
    m3rc
     
    M3rC, Dec 22, 2008 IP
  8. BANAGO

    BANAGO Active Member

    Messages:
    456
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #8
    Wait, I misunderstood your question - this can be done with CSS very easily. Interested for more?
     
    BANAGO, Dec 22, 2008 IP
  9. hmansfield

    hmansfield Guest

    Messages:
    7,904
    Likes Received:
    298
    Best Answers:
    0
    Trophy Points:
    280
    #9
    Bango is on the right track. You can set a default size for all images in your blog via your theme files.
     
    hmansfield, Dec 22, 2008 IP
  10. M3rC

    M3rC Peon

    Messages:
    1,493
    Likes Received:
    48
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Yeah that's what I was looking for, if you could shoot me the code or tell me what to do, that be great :)
     
    M3rC, Dec 22, 2008 IP
  11. sylv3rblade

    sylv3rblade Peon

    Messages:
    292
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #11
    css if want to apply it to every image in ALL your posts
    add something like:
    entry.img {
    max-width: 500px;
    }
    This will set all images within entry to a maximum width of 500 px.
     
    sylv3rblade, Dec 24, 2008 IP
  12. cntt8x

    cntt8x Well-Known Member

    Messages:
    306
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    138
    #12
    Thank you, it seem work for me ^^ but i dont know how to auto align center for all images? Can you help me
     
    cntt8x, Feb 24, 2010 IP
  13. christyk

    christyk Peon

    Messages:
    22
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #13
    For centering, you can try also adding the following to your img css

    margin-left: auto;
    margin-right: auto;
    display:block;
    Code (markup):
     
    christyk, Feb 24, 2010 IP