Resampling changes the number of pixels in an image. When a small raster is enlarged for a 300-PPI output target, software calculates new pixel values from the existing image. Those interpolated pixels can make the enlarged raster smoother and can help it meet a workflow’s required dimensions, but they do not restore detail the camera or original file never captured.
That is the fundamental difference between a real resolution conversion and a metadata-only DPI change.
Resampling versus changing density metadata
Suppose an image is 1200 × 1800 pixels.
If you set its density from 150 PPI to 300 PPI with resampling disabled:
- the raster stays 1200 × 1800
- its nominal physical size changes from 8 × 12 inches to 4 × 6 inches
If you want it to remain 8 × 12 inches at 300 PPI:
- required raster = 2400 × 3600
- the software must create additional pixels
That second operation is upsampling.
Adobe’s current image-size documentation makes the same distinction: changing resolution with resampling disabled preserves pixel dimensions, while resampling changes the pixel count.
What interpolation actually does
An interpolation algorithm estimates new values from neighboring source pixels.
Imagine only two source samples along an edge. If the image is doubled in size, the software has to decide what values should exist between and around those original samples.
Different methods make different tradeoffs among:
- smoothness
- edge sharpness
- ringing
- aliasing
- speed
- texture preservation
The algorithm can produce a convincing enlargement, but its new samples are estimates.
Common resampling approaches
Nearest neighbor
The simplest method copies nearby pixel values.
It preserves hard pixel boundaries and is useful for pixel art or some indexed graphics. It usually looks blocky when enlarging photographs.
Bilinear
Bilinear interpolation blends nearby samples in two dimensions. It is computationally simple and smooth but can look softer than more advanced methods.
Bicubic
Bicubic methods consider a wider neighborhood and are commonly used for photographic scaling. Variants can be tuned for smoother enlargements or sharper reductions.
Adobe currently exposes several automatic and bicubic-oriented resampling choices in Photoshop, plus newer detail-preserving options.
Lanczos
Lanczos resampling uses a windowed sinc approach. It can preserve edge definition well, particularly when reducing images, but can create ringing around high-contrast edges in some cases.
No algorithm is universally best for every source.
Upsampling does not create original detail
Suppose a blurred face occupies 80 × 100 pixels in the source.
Upsampling the entire image fourfold can make that face occupy 320 × 400 pixel positions, but it does not reveal eyelashes or texture that were never distinguishable in the source.
An enlargement model may create plausible-looking texture, but generated detail should not be confused with recovered evidence.
For print preparation, the goal of conventional resampling is usually to make the raster behave better at the desired output size, not to claim new capture resolution.
Downsampling is different
Downsampling removes pixel samples.
A 6000 × 4000 image reduced to 3000 × 2000 retains only one quarter of the original pixel count.
Good downsampling combines source information before discarding pixels to reduce aliasing and preserve useful edge structure.
Downsampling can be desirable when:
- the print workflow does not need the full source resolution
- a web derivative should be smaller
- upload or storage limits matter
- excessive high-frequency detail could alias after reduction
Keep the high-resolution original separately before destructive resizing.
How much enlargement is reasonable?
There is no universal percentage.
A modest enlargement of a sharp, low-noise source can work well. A much larger enlargement may also look acceptable at a distant viewing distance. A blurry or heavily compressed image can disappoint even with only a small increase.
Evaluate:
- original pixel dimensions
- final print dimensions
- effective PPI before enlargement
- subject detail
- viewing distance
- source sharpness
- compression artifacts
- output process
A numerical target should not replace visual inspection.
Example: preparing 5 × 7 inches at 300 PPI
Required dimensions:
- width: 5 × 300 = 1500 pixels
- height: 7 × 300 = 2100 pixels
Source: 1200 × 1680.
The source has the same 5:7 ratio, so no crop is required.
Native effective PPI at 5 × 7:
1200 ÷ 5 = 240 PPI
1680 ÷ 7 = 240 PPI
If the print lab accepts 240 PPI, you may not need to enlarge at all.
If the workflow specifically needs 1500 × 2100, resample by 1.25× in each dimension.
This is a much more useful decision than blindly changing a metadata field to 300.
Example: crop plus enlargement
A 3000 × 2000 photo has a 3:2 ratio.
You want an 8 × 10 print, which is 4:5.
If you crop to 2000 × 2500 pixels to fit 4:5, effective PPI becomes:
2000 ÷ 8 = 250
2500 ÷ 10 = 250
The original 3000-pixel width no longer participates because part of it was cropped away.
To deliver 2400 × 3000 for 300 PPI, you would then enlarge the cropped raster by 20 percent in each dimension.
Resample before or after cropping?
Usually define the final composition first.
Cropping first avoids generating pixels that will immediately be discarded. It also lets you calculate the actual source resolution remaining for the chosen aspect ratio.
A practical order is:
- preserve the original
- set final aspect ratio and crop
- decide final physical size
- calculate effective PPI
- compare with printer requirements
- resample if required
- apply output sharpening if appropriate for the workflow
- export a derivative
Compression after resampling
An enlarged image contains more pixels, but saving as a heavily compressed JPEG can erase some of the benefit.
Use a quality setting suitable for the destination. Repeated JPEG re-encoding can compound artifacts.
If the production workflow supports a lossless working file, keep one during editing and create the final delivery format at the end.
Why the converter should show both old and new values
A trustworthy DPI converter should display:
Before:
- original pixels
- detected metadata
- original file format
After:
- requested target PPI
- whether resampling is on
- output pixels
- estimated print size
- resulting format
That makes the transformation understandable and prevents a user from mistaking a metadata-only operation for an image enlargement.
Related entities and semantic terms
resampling, interpolation, upsampling, downsampling, bicubic, bilinear, nearest neighbor, Lanczos, 300 PPI, pixel dimensions, raster image, print size.
FAQs
Why can an upsampled image look smoother but not more genuinely detailed?
Interpolation can reduce visible stair-stepping by creating intermediate samples, but those samples are derived from existing pixels rather than newly captured scene information.
Is nearest-neighbor enlargement useful for photos?
Usually not for conventional photographs because it produces blocky pixel replication. It is useful when preserving hard pixel boundaries is intentional, such as pixel art.
Why should I crop before calculating the final enlargement?
Cropping removes source pixels. Calculating after the crop tells you the real effective PPI available to the final composition.
Can downsampling ever improve an image’s appearance?
It can reduce visible noise or artifacts at the smaller output size and produce a cleaner derivative, but it does so by discarding spatial information rather than adding detail.
Closing section
Resampling is a real pixel operation. Use it only when the final output requires different pixel dimensions, and judge the result against the original. A 300-PPI target is useful when connected to a physical size, not when it is treated as an isolated quality switch.
Source and verification notes
The distinction between resizing and resampling, and the general descriptions of interpolation options, were checked against current Adobe Photoshop documentation. The article does not claim that one interpolation method is universally superior.