Search found 11 matches

by HaroldWindt
2016-01-29T06:32:01-07:00
Forum: Users
Topic: how to define -tile
Replies: 6
Views: 7626

Re: how to define -tile

The trick is to create logofuli.png at whatever size you need for the output, containing whatever image you need repeating.

thanks for your reply

I mean the logofuli.png is a fixed png file, how to add some parameter into this command
composite -tile -gravity center logofuli.png myg182_01.jpg ...
by HaroldWindt
2016-01-29T06:25:10-07:00
Forum: Users
Topic: Color profile for Gray images
Replies: 6
Views: 8332

Re: Color profile for Gray images

I haven't seen color profiles that will convert to CMYK grayscale. I have seen profiles that will convert to sRGB grayscale, so you could convert via one of these and then to CMYK.

Or you could use one of the many other methods to convert to sRGB grayscale, then convert the profile to CMYK.

Let ...
by HaroldWindt
2016-01-29T05:47:27-07:00
Forum: Users
Topic: Color profile for Gray images
Replies: 6
Views: 8332

Re: Color profile for Gray images

Any color profile can be used with grayscale images. Does that answer the question?

Let me rephrase my question

convert -alpha off -units pixelsperinch 300 Test_RGB_2901_1.jpg[0] -profile "sRGB Color Space Profile" -profile <GrayProfile??> Test_Gray_2901_1.jpg

So which color profile I can use ...
by HaroldWindt
2016-01-29T02:42:19-07:00
Forum: Users
Topic: Color profile for Gray images
Replies: 6
Views: 8332

Color profile for Gray images

Currently in my conversion I am using the below profile based on color mode

RGB to CMYK (when the input image also doesnt have any color profile)
convert -alpha off -units pixelsperinch 300 Test_RGB_2901_1.jpg[0] -profile "sRGB Color Space Profile" -profile USWebCoatedSWOP.icc Test_CMYK_2901_1.jpg ...
by HaroldWindt
2015-11-05T04:26:03-07:00
Forum: Users
Topic: TIFF to EPS resulting in bad output image
Replies: 9
Views: 6806

Re: TIFF to EPS resulting in bad output image

This seems to work by using the clip-path in the image.

convert -quiet Harold_1.tif[0] \
-profile /Users/fred/images/profiles/USWebCoatedSWOP.icc \
-profile /Users/fred/images/profiles/sRGB.icc \
-alpha transparent -clip -alpha opaque -strip Harold_1.eps

This is chopping off the complete shadow ...
by HaroldWindt
2015-11-04T05:30:07-07:00
Forum: Users
Topic: TIFF to EPS resulting in bad output image
Replies: 9
Views: 6806

TIFF to EPS resulting in bad output image

When converting the TIFF-CMYK file to EPS-RGB all the flats (knocked out images with a shadow on a transparent layer, saved as a transparent tiff) are showing up with very dark shadow in the output EPS

One of the source TIFF file - https://www.dropbox.com/s/dvah41j76zxzkyk/Harold_1.tif?dl=0 ...
by HaroldWindt
2015-09-08T00:18:52-07:00
Forum: Users
Topic: Converting PDF to JPEG is giving negative output
Replies: 7
Views: 10017

Re: Converting PDF to JPEG is giving negative output

ImageMagick 6.9.1-0
Ghostscript 9.15
Environment - Linux

We are getting a black background JPEG file when we are trying to conveert PDF to JPEG. Below is the command we are using
convert -alpha off -units pixelsperinch -resize 800X600 Dropbox.pdf[0] -profile "sRGB Color Space Profile.icm ...
by HaroldWindt
2015-09-04T08:08:05-07:00
Forum: Users
Topic: Converting PDF to JPEG is giving negative output
Replies: 7
Views: 10017

Re: Converting PDF to JPEG is giving negative output

Tried a simple convert using latest IM & GS and still the output JPEG file is black
convert C:\Users\Admin\Desktop\DropBox.pdf[0] C:\Users\Admin\Desktop\DropBox.jpg

Operating System - Windows 7 (64bit)
ImageMagick Version - 6.9.2
Ghost Script Version - 9.16
by HaroldWindt
2015-09-02T06:01:42-07:00
Forum: Users
Topic: Converting PDF to JPEG is giving negative output
Replies: 7
Views: 10017

Converting PDF to JPEG is giving negative output

ImageMagick 6.9.1-0
Ghostscript 9.15
Environment - Linux

We are getting a black background JPEG file when we are trying to conveert PDF to JPEG. Below is the command we are using
convert -alpha off -units pixelsperinch -resize 800X600 Dropbox.pdf[0] -profile "sRGB Color Space Profile.icm" -profile ...
by HaroldWindt
2015-06-19T05:00:05-07:00
Forum: Users
Topic: Tiff to Eps conversion, output file size is big compared to the file size from Photoshop generated eps file
Replies: 4
Views: 5520

Re: Tiff to Eps conversion, output file size is big compared to the file size from Photoshop generated eps file

Sorry for the delayed response guys

Is one 120 pixels per Inch and the other 120 pixels per Centimeter ?
Both are PixelPerInch

Save as EPS2 (or 3) rather than EPS (e.g. convert myimage.tiff eps2:myimage.eps).
I had saved the image as eps2 and eps3, the size has drastically reduced.
Still its ...
by HaroldWindt
2015-06-02T05:06:39-07:00
Forum: Users
Topic: Tiff to Eps conversion, output file size is big compared to the file size from Photoshop generated eps file
Replies: 4
Views: 5520

Tiff to Eps conversion, output file size is big compared to the file size from Photoshop generated eps file

Conversion from TIFF-CMYK -> EPS-RGB
Resolution change from 300 -> 120

We had a tiff file and we converted it to EPS using Imagemagick and Photoshop, the resultant output file has a huge variation of size difference on the file system.

Photoshop EPS file - 523992 bytes
ImageMagick EPS file ...