Results 1 to 2 of 2
  1. #1

    Smoothing Out Resized Images

    I made an image resizing script, but it makes them very scratchy and pixelized. Got any clue how to smooth it out (like deviantart):

    http://www.pkmncity.com/imghst/scale...Banner%201.gif

  2. #2
    Join Date
    Feb 2005
    Location
    england, west yorkshire
    Posts
    2
    If you are using the GD library to resize images automatically, and are making use of the GD resize functions, try resampling the image instead. i.e. if you are using PHP, use imagecopyresampled() instead of imagecopyresized(). in Ruby; copyResampled() instead of copyResized().

    This is recommended if one desires a better quality image when resizing images with GD, and has been successful for that purpose in my experience.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •