Search code examples
drupaldrupal-6

Drupal.. images compression issue


for some reasons the images I upload to my Drupal website are downsampled.

For example the image I'm uploading is 857x947

I've checked the following settings: - the size of the CCK ImageField: 420x840 - the size of image cache used to re-sample the image: 420x840

Image Toolkit: Compression: 100%

I'm using cropping functionality. But I'm not dragging a small area, just almost all the original image is selected.

What am I missing ? Maybe php is compressing the image while uploading it ?

Thanks


Solution

  • Just to be sure that it is not caching try to clear all Drupal caches and your browser cache as well.

    Then check if the imagecache preset you're using really isn't containing any scale action, just a crop action. To be sure, again just flush the imagecache preset and check the folder that there is no old, wrong image left.

    Then go to your content type -> Manage Fields -> your picture field and check if the maximum resolution in there is set correctly.

    I'm not aware of any other steps that downsample an image, if you don't have any other image-related modules installed. You wrote that you checked theses things, but most likely one of those steps is responsible.