I'd like to show a part of an image on my web page. Suppose the original format is 1024x768 the image shown has to be 100x768. It's not a re-size but simple a cut starting from 0,0 pixel. Any suggestions?
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.
|
|
|
Use CSS's Clip Property:
Or use overflow on a container:
|
|||||||
|
|
You can use the CSS clip to show just part of the image, like:
|
|||
|
|
|
Crop the image or use existing library, WideImage is one of the best for this kind of operations. |
|||
|
|
|
Crop the image before you upload it to the server using an image editor. Unless for some reason you need the whole image loaded but cut off... |
|||
|
|
|
Another solution would be inserting the image as a background image.
|
|||
|
|
|
Note that the CSS solutions actually download the whole image, then show just the top portion of it. Depending on usage, I would suggest either a dynamic cropping script or caching pre-cropped images. A cropping script would be something like:
and would be called from your web page like:
|
|||
|
|