ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* profile specification '{ISO Coated v2 300% (ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua'
@ 2018-10-01  8:47 Jan U. Hasecke
  2018-10-03  9:29 ` Wolfgang Schuster
  0 siblings, 1 reply; 3+ messages in thread
From: Jan U. Hasecke @ 2018-10-01  8:47 UTC (permalink / raw)
  To: mailing list for ConTeXt users

I get this error when I try to compile a pdf with:

\setupbackend[
  format=PDF/X-3:2003,
  intent={ISO Coated v2 300\letterpercent\space (ECI)}
  ]

In log:

backend         > profiles > setting format to 'PDF/X-3:2003'
backend         > profiles > forcing pdf version 1.4.0, compression
level 3, object compression disabled
colors          > defining > supported models: gray 'true', rgb 'true',
cmyk 'true', spot 'true'
transparencies  > support > transparency is not supported
viewerlayers    > viewerlayers are not supported
backend         > xmp > using file
'/home/juh/context/tex/texmf-context/tex/context/base/mkiv/lpdf-pdx.xml'
backend         > profiles > profile specification '{ISO Coated v2 300%
(ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua'

The profile is there:

~/context/tex/texmf-context/colors/icc/profiles$ ls
CoatedFOGRA39.icc            Probev1_ICCv2.icc
default_cmyk.icc             Probev1_ICCv4.icc
default_gray.icc             Probev2_ICCv4.icc
default_rgb.icc              ps_cmyk.icc
ecirgb_v2.icc                ps_gray.icc
ecirgb_v2_iccv4.icc          ps_rgb.icc
GRACoL2006_Coated1v2.icc     PSRgravureMF.icc
isocoated_v2_300_eci.icc     PSR_LWC_PLUS_V2_PT.icc
ISOcoated_v2_300_eci.icc     PSR_LWC_STD_V2_PT.icc
isocoated_v2_eci.icc         PSR_SC_PLUS_V2_PT.icc
ISOcoated_v2_eci.icc         PSR_SC_STD_V2_PT.icc
ISOnewspaper26v4_gr.icc      SC_paper_eci.icc
ISOnewspaper26v4.icc         sgray.icc
ISOuncoated.icc              SNAP2007.icc
ISOuncoatedyellowish.icc     srgb.icc
ISOwebcoated.icc             srgb_v4_icc_preference.icc
JapanColor2001Coated.icc     SWOP2006_Coated3v2.icc
JapanColor2002Newspaper.icc  SWOP2006_Coated5v2.icc
JapanWebCoated.icc           UncoatedFOGRA29.icc
lab.icc                      WebCoatedFOGRA28.icc

The profile is also defined in colorporfiles.xml

<profile>
        <filename>ISOcoated_v2_300_eci.icc</filename>
        <colorspace>CMYK</colorspace>
        <class>prtr</class>
        <id>FOGRA39</id>
        <info>ISO Coated v2 300% (ECI)</info>
        <checksum>e14f5db955711d914d877df35ad7a1b5</checksum>
        <version>24000000</version>
        <url>http://www.color.org</url>
        <outputcondition>Offset printing, according to ISO
12647-2:2004/Amd 1, OFCOM, paper type 1 or 2 = coated art, 115 g/m2,
tone value increase curves A (CMY) and B (K)</outputcondition>
    </profile>

Any hints?
juh
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: profile specification '{ISO Coated v2 300% (ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua'
  2018-10-01  8:47 profile specification '{ISO Coated v2 300% (ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua' Jan U. Hasecke
@ 2018-10-03  9:29 ` Wolfgang Schuster
  2018-10-03 10:25   ` Jan U. Hasecke
  0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Schuster @ 2018-10-03  9:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Jan U. Hasecke



Jan U. Hasecke schrieb am 01.10.18 um 10:47:
> I get this error when I try to compile a pdf with:
>
> \setupbackend[
>    format=PDF/X-3:2003,
>    intent={ISO Coated v2 300\letterpercent\space (ECI)}
>    ]

You need a comma after the right brace for the intent argument.


When you take a closer look at the message you can see the profile name 
contains in your case both braces with a space at the end.

backend         > profiles > profile specification '{ISO Coated v2 300%
(ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua'


You can fix this with a comma after the argument

\setupbackend[
   format=PDF/X-3:2003,
   intent={ISO Coated v2 300\letterpercent\space (ECI)},
   ]

or by putting the right bracket after the argument

\setupbackend
   [format=PDF/X-3:2003,
    intent={ISO Coated v2 300\letterpercent\space (ECI)}]

to properly load the profile:

backend         > profiles > profile specification 'ISO Coated v2 300% 
(ECI)' loaded from 
'/Users/wolf/context/beta/tex/texmf-context/colors/icc/context/colorprofiles.xml'


Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: profile specification '{ISO Coated v2 300% (ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua'
  2018-10-03  9:29 ` Wolfgang Schuster
@ 2018-10-03 10:25   ` Jan U. Hasecke
  0 siblings, 0 replies; 3+ messages in thread
From: Jan U. Hasecke @ 2018-10-03 10:25 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 03.10.18 11:29, Wolfgang Schuster wrote:
> 
> 
> Jan U. Hasecke schrieb am 01.10.18 um 10:47:
>> I get this error when I try to compile a pdf with:
>>
>> \setupbackend[
>>    format=PDF/X-3:2003,
>>    intent={ISO Coated v2 300\letterpercent\space (ECI)}
>>    ]
> 
> You need a comma after the right brace for the intent argument.
> 
> 
> When you take a closer look at the message you can see the profile name
> contains in your case both braces with a space at the end.
> 
> backend         > profiles > profile specification '{ISO Coated v2 300%
> (ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua'
> 
> 
> You can fix this with a comma after the argument
> 
> \setupbackend[
>   format=PDF/X-3:2003,
>   intent={ISO Coated v2 300\letterpercent\space (ECI)},
>   ]
> 
> or by putting the right bracket after the argument
> 
> \setupbackend
>   [format=PDF/X-3:2003,
>    intent={ISO Coated v2 300\letterpercent\space (ECI)}]
> 

Thanks a lot for helping the "Ochs vorm Berg".

juh
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-10-03 10:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-01  8:47 profile specification '{ISO Coated v2 300% (ECI)} ' not found in 'colorprofiles.xml, colorprofiles.lua' Jan U. Hasecke
2018-10-03  9:29 ` Wolfgang Schuster
2018-10-03 10:25   ` Jan U. Hasecke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).