Skip to main content
edited tags; edited title
Link
Alexey Popkov
  • 62.5k
  • 7
  • 163
  • 405

ImageResize with Import high-resolution images from a PDF?

added 55 characters in body
Source Link
ChaSta
  • 1.2k
  • 5
  • 16

I have a pdf imagepdf file that I want to resize after importing. However, ImageResize doesn't seem to take into account the high-resolution of the initial image, and resizing makes it very pixelated. I can rescale the original import by hand for better effect, but how can I get this result automatically?

G0 = Import["Structure.pdf"][[1]]; Style[Grid[{{G0, ImageResize[G0, Scaled[2]], G0}}],ImageSizeMultipliers -> {1, 1}] 

Original import, image resize, and manually resized original image

I have a pdf image that I want to resize after importing. However, ImageResize doesn't seem to take into account the high-resolution of the initial image, and resizing makes it very pixelated. I can rescale the original import by hand for better effect, but how can I get this result automatically?

G0 = Import["Structure.pdf"][[1]]; Style[Grid[{{G0, ImageResize[G0, Scaled[2]], G0}}],ImageSizeMultipliers -> {1, 1}] 

Original import, image resize, and manually resized original image

I have a pdf file that I want to resize after importing. However, ImageResize doesn't seem to take into account the high-resolution of the initial image, and resizing makes it very pixelated. I can rescale the original import by hand for better effect, but how can I get this result automatically?

G0 = Import["Structure.pdf"][[1]]; Style[Grid[{{G0, ImageResize[G0, Scaled[2]], G0}}],ImageSizeMultipliers -> {1, 1}] 

Original import, image resize, and manually resized original image

Source Link
ChaSta
  • 1.2k
  • 5
  • 16

ImageResize with high-resolution images?

I have a pdf image that I want to resize after importing. However, ImageResize doesn't seem to take into account the high-resolution of the initial image, and resizing makes it very pixelated. I can rescale the original import by hand for better effect, but how can I get this result automatically?

G0 = Import["Structure.pdf"][[1]]; Style[Grid[{{G0, ImageResize[G0, Scaled[2]], G0}}],ImageSizeMultipliers -> {1, 1}] 

Original import, image resize, and manually resized original image