Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use list($pws,$phs,$pfts,$pfas)=getimagesize($row->picurl); on correctly linked pictures which display fine, but some are too wide to fit in the table column.

ini_get('allow_url_fopen') returns 1.

According to the manual, getimagesize() doesn't require the GD Image Library.

phpversion() returns "5.3.9-1~dotdeb.3".

What I want to do is compare the width of external PNG image urls to a table column width while filling the table, to scale only incorrectly uploaded huge ones and keep the other correct ones unscaled, ie. either set width="384" for the img tag, or not.

Most PNGs are exported from Photoshop with the Save For Web option, rgb 24-bits, no alpha or matte, so they should be as good as they get, yet even those return nulls.

Do I need to enable something else on the server or can I check the width with some other function?

I will also accept any comparable solutions to achieve this.

share|improve this question

1 Answer

If you know the width of the column, you can set CSS max-width on the image:

<img src="..." style="max-width: <?= $column_width; ?>;" />

This will reduce large images but not enlarge smaller images.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.