For publication purposes we need high resolution pictures. I am
seeking expert advice as how can I improve the resolution?
Thanks in advance!
Zhiliang
Hi Zhiliang,
The resolution of a png is one pixel per pixel. You can't get any higher
than that! You should be able to make the entire image larger, for example
by specifying a larger array when you call new on your GD object.
Currently it is 360x402, you could try doubling each.
Or you may need to switch to something other than png, like svg using
GD::SVG.
Xho
--
-------------------- http://NewsReader.Com/ --------------------
The costs of publication of this article were defrayed in part by the
payment of page charges. This article must therefore be hereby marked
advertisement in accordance with 18 U.S.C. Section 1734 solely to indicate
this fact.
Use a camera with more mega-pixels, and set it to the highest
resolution. ( Usually the largest picture, allowing fewest pictures
in storage).
If you take a low resolution photo, and use a program to make it larger,
each pixel will be duplicated with the same color, to accomodate the
larger size. So the picture will be larger, but the resolution will not
improve.
Resolution comes from the camera's megapixel count and settings.
zentara
--
I'm not really a human, but I play one on earth.
http://zentara.net/japh.html
--
Zhiliang
>Many thanks for all your hints. That'll be useful.
I just looked at your sample output, and since it's lines and
text, you could use the Scalable Vector Graphics format, or
.svg
GD has svg output with the module
http://search.cpan.org/~twh/GD-SVG-0.28/SVG.pm
SVG files look like xml, and will change resolution
automatically to adjust to window size.
Google for svg for more info.
> SVG files look like xml
That's because they are XML.
Many thanks for all who replied with suggestions. These did give me
some insights. Appreciate it.
Zhiliang