Jump to content

parsing <img> tag


guls_guys

Recommended Posts

Hi guys

 

i am new to php and need help in pasrsing img tag

"<img src=\"images/hocnorwich/productInfo.jpg\" alt=\"Sophie Evening Gown\" title=\" Sophie Evening Gown \" width=\"105\" height=\"143\" />"

 

i want to change the width and height of image to 50% of current size

 

so how can i do this possible by parsing the string or making tokens or might be using some regular expressions (which i dont know how to use)

 

and i want to do it in php

 

hope to get a swift answer

 

cheers

salman

Link to comment
Share on other sites

Hello,

 

I would use image functions to read the image directly, get the actual width and height, and build the image tag with the height and width set to calculated to 50% of actual size.

 

Cheers,

 

Joseph Melnick

Link to comment
Share on other sites

hi guys

 

found the solution

 

$src=htmlentities($proImg,ENT_NOQUOTES);//$proImg got the string which i want to change

$src = preg_replace( '/(width|height)="\d+"/', '$1="10%"', $src);

echo $src= html_entity_decode($src);

 

Regards

Salman

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.