Jump to content

Resize image inside html content


sowna

Recommended Posts

Hi, i want to resize the image inside html content. If the image width above 600, i have to set to 600 as default width for that image.

 

Example,

$string = '<p>Also from the wonderful Tank Theory line is this nice Comrade t-shirt. She’s not all that innocent, not that she really looks it, but if you inspect the shirt closer you’ll see she is hiding something on the back. The shirt is now available in red with black wterbased print, and gold foil accents.</p>
<p><a title="Tank Theory Comrade" href="http://www.tanktheory.com/store/standard-t-shirts/product/comrade/" target="_blank"><img class="alignnone size-full wp-image-2642" title="m_509_tank_theory_red" src="http://www.birdfight.com/blogfiles/wp-content/uploads/2009/02/m_509_tank_theory_red.jpg" alt="m_509_tank_theory_red" style="height: 400px; width:800px;"></a></p>';

 

Please help me...

Link to comment
https://forums.phpfreaks.com/topic/250759-resize-image-inside-html-content/
Share on other sites

No...if you apply like that then it will set width 600 to all images...

 

I don't want like that...

 

I want to resize those image width more than 600.

what joe92 provided will do exactly what you are saying that you will want, any image that is less then a width of 600px will not be affected by the CSS, and image bigger than 600px will be shrunk to a width of 600px.

while loading itself i have to resize the image.

 

can you please tell me how to get the width, height of the image and to replace the custom width and height.

 

From:

<img src="test.jpg" style="width:1024px; height:600px;" title="test" alt="test">

 

To:

<img src="test.jpg" style="width:600px; height:400px;" title="test" alt="test">

 

plz....

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.