Pergunta

Eu tenho alguns arquivos PNG, e seus PPI foram 300.

Agora eu mudo o PPI para 72, mas o tamanho das fotos tornou-se maior!

Por exemplo, a.png foi 190k, 300ppi,

Agora se torna 400 + k, 72pi e é sempre 320 * 460,

O que está acontecendo, como devo fazer?

Eu deveria reduzir o tamanho das fotos ..

Foi útil?

Solução

ppi stands for 'pixels per inch'.

The equation for image size is NoOfPixels = NoOfInches * PixelsPerInch

Or NoOfInches = NoOfPixels/PixelsPerInch

So reducing the ppi will increase the 'physical' size of the image.

To reduce the size of the image you need to squash more pixels into each image of 'physical' space, so increase the ppi

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top