Search found 6 matches
- 2012-02-25T09:33:30-07:00
- Forum: Users
- Topic: PSD files are unreasonable big
- Replies: 7
- Views: 14687
Re: PSD files are unreasonable big
That's not what i get identify -verbose test.eps Image: test.eps Format: PS (PostScript) Class: DirectClass Geometry: 5068x4222+0+0 Resolution: 1200x1200 Print size: 4.22333x3.51833 Units: Undefined Type: Bilevel Base type: Bilevel Endianess: Undefined Colorspace: RGB Depth: 16/1-bit Channel depth ...
- 2012-02-24T00:36:53-07:00
- Forum: Users
- Topic: PSD files are unreasonable big
- Replies: 7
- Views: 14687
- 2012-02-23T15:03:53-07:00
- Forum: Users
- Topic: PSD files are unreasonable big
- Replies: 7
- Views: 14687
Re: PSD files are unreasonable big
Same result. As mentioned, the fun thing is that after you open the file with any other editor and resave it, its shrinks back to the right size... I did some more testing with the resulting file. convert test.psd test.jpeg made IM crash with: Problem Event Name: APPCRASH Application Name: convert ...
- 2012-02-23T05:17:15-07:00
- Forum: Users
- Topic: PSD files are unreasonable big
- Replies: 7
- Views: 14687
PSD files are unreasonable big
Hello. I have a problem converting .eps files to .psd files, and that is the the resulting image is way to big. For example: test.eps is 2,60 MB . After running running convert test.eps test.psd i will have a test.psd that is 163 MB ! Then i open the image in Gimp and just saves it again, witch will ...
- 2012-02-17T05:26:28-07:00
- Forum: Users
- Topic: Change DPI while keeping resolution
- Replies: 32
- Views: 79395
Re: Change DPI while keeping resolution
I found my error now.
There is a differences between
and
where the later produces the result i wanted.
There is a differences between
Code: Select all
convert -density 300 in.eps out.psd
Code: Select all
convert in.eps -density 300 out.psd
- 2012-02-17T03:29:16-07:00
- Forum: Users
- Topic: Change DPI while keeping resolution
- Replies: 32
- Views: 79395
Change DPI while keeping resolution
Hello. I'm trying to change the DPI of an EPS image that is converted to a PSD image with density 300. The EPS is 475x1000 px. If I run convert test.epx test.psd I get a PSD file that is 475x1000 px and 72 DPI. I want a PSD that is 475x1000px and 300 DPI. I tried with -resample 300 and -density 300 ...