Hi to all!
I would like to automate a procedure that I currently do with Photoshop but I do not know if it can be done with IM. Here is the procedure:
1) Create a new RGB image
2) Write some text, then color it
3) Select the text level, invert selection, save the selection
4) Go to the "Channels" tab, click on the new channel just creted and set it to "Flat color"
5) Set the color to "Pantone Yellow C"
6) Save the file as PDF
I hope I have explained it well.
Thanks in advance to all!
Create a PDF with custom channel level
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Create a PDF with custom channel level
ImageMagick is a raster image processor. It saves images as raster, ie a number of pixels. I suspect your Photoshop procedure saves the PDF contents as text, or at least as vectors. IM can save images as PDF, but merely by putting a PDF wrapper round the raster images.
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Create a PDF with custom channel level
Imagemagick also does not know Pantone colors and is not interactive. If you know the rgb color equivalent to your Pantone color, then you likely can do it all, except as snibgo points out your PDF will be a raster image embedded in a vector shell. Also Imagemagick is command line based and not a GUI tool.
Re: Create a PDF with custom channel level
Hi guys! Thanks for your fast reply!! So... I know that IM it's just a command line program. I think it's not possible to do what I have to do, because the additional channel is just an information that it's interpretated by the printer.
I.E. :
The Pantone Yellow C channel is translated by the printer in a command (embossing print)
If I understand what you says, it's not possible to bring this information in the file, right?
Thanks in advance.
I.E. :
The Pantone Yellow C channel is translated by the printer in a command (embossing print)
If I understand what you says, it's not possible to bring this information in the file, right?
Thanks in advance.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Create a PDF with custom channel level
No, IM can't write Pantone data to the PDF.
snibgo's IM pages: im.snibgo.com
Re: Create a PDF with custom channel level
Not even if I could translate the pantone into rgb?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Create a PDF with custom channel level
You can colour pixels with any colour you want, if you know the RGB (or sRGB) numbers, or CMYK, or whatever.
snibgo's IM pages: im.snibgo.com
Re: Create a PDF with custom channel level
But (if I understand) when I save the PDF, I will lose that information because it's rastered in the final result, right? If I open the file with Photoshop I suppose I can't see the additional channels, but only the classic R,G,B...
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Create a PDF with custom channel level
I don't understand the question.
When you create an image with IM, it isn't "rastered in the final result". It is always a raster image (ie pixels). Pixels might have RGB channels, or CMYK, or various others. But IM can't create channels for spot colours.
When you create an image with IM, it isn't "rastered in the final result". It is always a raster image (ie pixels). Pixels might have RGB channels, or CMYK, or various others. But IM can't create channels for spot colours.
snibgo's IM pages: im.snibgo.com
Re: Create a PDF with custom channel level
Ok, thanks for your help! I need to found another way, but thanks a lot for your reply!