[xep-support] Re: Xep-support Digest, Vol 3, Issue 4

Anders Svensson anders.svensson at expertinfo.se
Wed Dec 8 07:39:14 PST 2010


Ok, thanks, I was considering something along those lines as a last resort.
But is there a list of conversion values available then? Also, is there any
way at all to view an svg file with these values? It seems our xml editor
can't do it (Oxygen XML) so the writers won't be able to see the images, and
again, opening them in IE doesn't work...

Med vänliga hälsningar/Kind regards,

Anders Svensson
____________________________________________________________________________
__ 
www.expertinfo.se  | Teknikinformation, XML-system och språkkonsulttjänster
| anders.svensson at expertinfo.se | 
St Eriksgatan 117 113 43 Stockholm | Phone +46 8 559 22 190 | Cell +46 70
815 99 02 | Fax +46 8 760 90 11
Please consider the planet before printing this e-mail.



-----Original Message-----
From: xep-support-bounces at renderx.com
[mailto:xep-support-bounces at renderx.com] On Behalf Of
xep-support-request at renderx.com
Sent: den 8 december 2010 15:47
To: xep-support at renderx.com
Subject: Xep-support Digest, Vol 3, Issue 4

Send Xep-support mailing list submissions to
	xep-support at renderx.com

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.renderx.com/mailman/listinfo/xep-support
or, via email, send a message with subject or body 'help' to
	xep-support-request at renderx.com

You can reach the person managing the list at
	xep-support-owner at renderx.com

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Xep-support digest..."


Today's Topics:

   1. Use SVG wth CMYK (Anders Svensson)
   2. Re: Use SVG wth CMYK (Jim Mott)


----------------------------------------------------------------------

Message: 1
Date: Wed, 8 Dec 2010 15:01:13 +0100
From: "Anders Svensson" <anders.svensson at expertinfo.se>
To: <xep-support at renderx.com>
Subject: [xep-support] Use SVG wth CMYK
Message-ID: <001801cb96e0$5fe95900$1fbc0b00$@svensson at expertinfo.se>
Content-Type: text/plain; charset="iso-8859-1"

Hi,

 

I am trying to figure out how to be able to use SVG with CMYK, as xep is
supposed to support. I found this post on the web from one of RenderXs
support technicians:

 

===========================

Hello Eliot, 

I re-read the SVG spec and have realized that icc-color() cannot be the 
first entry into a color specifier. 
[ <http://www.w3.org/TR/SVG11/painting.html#SpecifyingPaint>
http://www.w3.org/TR/SVG11/painting.html#SpecifyingPaint]. 

The first entry is a URL (gradient, pattern) or RGB color (as defined in 
CSS2 spec). 

So the 'fill' attribute in your example should look like: 
fill="rgb(178.5,255,255) icc-color(#CMYK, 0.3,0,0,0)" 

XEP 4.x includes colorbar.svg (images/colorbar.svg). 'icc-color' function is

used intensively in that file. :) 

With best regards, 
  Alexei Gagarinov 
RenderX 

===========================

 

That sounds good, and I looked at the colorbar.svg example file. The problem
is, how do you actually create such files? I mean, there doesn?t seem to be
any support for it in Adobe Illustrator that I can find, and searching
Inkscape forums seems to suggest they don?t have any built-in support for
creating files like this either. So how are you supposed to create them?
Surely you are not meant to write the graphic files by hand? Specifically
what I need to do is save EPS files as SVG with this color profile in the
SVG file.

 

BTW, an image like colorbar.svg is only usable by xep (and other special
tools that support this function)? Because looking at it in IE (just for
reviewing) it doesn?t display as a color bar, only two black bars on each
end.

 

Med v?nliga h?lsningar/Kind regards,

 

Anders Svensson

____________________________________________________________________________
__ 

www.expertinfo.se <http://www.expertinfo.se/>   | Teknikinformation,
XML-system och spr?kkonsulttj?nster |  <mailto:anders.naslund at expertinfo.se>
anders.svensson at expertinfo.se | 

St Eriksgatan 117 113 43 Stockholm | Phone +46 8 559 22 190 | Cell +46 70
815 99 02 | Fax +46 8 760 90 11

Please consider the planet before printing this e-mail.

 

 <http://www.expertinfo.se/> expertinfo

 




-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.renderx.com/pipermail/xep-support/attachments/20101208/a940946
6/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image002.png
Type: image/png
Size: 12988 bytes
Desc: not available
URL:
<http://lists.renderx.com/pipermail/xep-support/attachments/20101208/a940946
6/attachment-0001.png>

------------------------------

Message: 2
Date: Wed, 08 Dec 2010 09:47:05 -0500
From: Jim Mott <jmott at pubdata.com>
To: RenderX Community Support List <xep-support at renderx.com>
Subject: [xep-support] Re: Use SVG wth CMYK
Message-ID: <4CFF9A69.3020900 at pubdata.com>
Content-Type: text/plain; charset="iso-8859-1"; Format="flowed"

Anders,

To get CMYK values in your SVG per the RenderX syntax, you might 
consider using XSL to convert the RGB values in the SVG to the CMYK values.

Jim Mott


On 12/8/2010 9:01 AM, Anders Svensson wrote:
>
> Hi,
>
> I am trying to figure out how to be able to use SVG with CMYK, as xep 
> is supposed to support. I found this post on the web from one of 
> RenderXs support technicians:
>
> ===========================
>
> /Hello Eliot, /
>
> /I re-read the SVG spec and have realized that icc-color() cannot be the
> first entry into a color specifier.
> [http://www.w3.org/TR/SVG11/painting.html#SpecifyingPaint//]. /
>
> /The first entry is a URL (gradient, pattern) or RGB color (as defined in
> CSS2 spec). /
>
> /So the 'fill' attribute in your example should look like:
> fill="rgb(178.5,255,255) icc-color(#CMYK, 0.3,0,0,0)" /
>
> /XEP 4.x includes colorbar.svg (images/colorbar.svg). 'icc-color' 
> function is
> used intensively in that file. :) /
>
> /With best regards,
>   Alexei Gagarinov
> RenderX /
>
> ===========================
>
> That sounds good, and I looked at the colorbar.svg example file. The 
> problem is, how do you actually create such files? I mean, there 
> doesn't seem to be any support for it in Adobe Illustrator that I can 
> find, and searching Inkscape fo rums seems to suggest they don't have 
> any built-in support for creating files like this either. So how are 
> you supposed to create them? Surely you are not meant to write the 
> graphic files by hand? Specifically what I need to do is save EPS 
> files as SVG with this color profile in the SVG file.
>
> BTW, an image like colorbar.svg is only usable by xep (and other 
> special tools that support this function)? Because looking at it in IE 
> (just for reviewing) it doesn't display as a color bar, only two black 
> bars on each end.
>
> Med v?nliga h?lsningar/Kind regards,
>
> Anders Svensson
>
> __________________________________________________________________________

> ____
>
> www.expertinfo.se <http://www.expertinfo.se/>  | Teknikinformation, 
> XML-system och spr?kkonsulttj?nster | anders.svensson at expertinfo.se 
> <mailto:anders.naslund at expertinfo.se>|
>
> St Eriksgatan 117 113 43 Stockholm | Phone +46 8 559 22 190 | Cell +46 
> 70 815 99 02 | Fax +46 8 760 90 11
>
> Please consider the planet before printing this e-mail.
>
> expertinfo <http://www.expertinfo.se/>
>
> 
>
>
> _______________________________________________
> (*) To unsubscribe, please visit
http://lists.renderx.com/mailman/options/xep-support
> (*) By using the Service, you expressly agree to these Terms of Service
http://w
> ww.renderx.com/terms-of-service.html


!DSPAM:87,4cff9a6f63731837327068!
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.renderx.com/pipermail/xep-support/attachments/20101208/b50fcf3
f/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/png
Size: 12988 bytes
Desc: not available
URL:
<http://lists.renderx.com/pipermail/xep-support/attachments/20101208/b50fcf3
f/attachment.png>

------------------------------

_______________________________________________
Xep-support mailing list
Xep-support at renderx.com
http://lists.renderx.com/mailman/listinfo/xep-support


End of Xep-support Digest, Vol 3, Issue 4
*****************************************


!DSPAM:87,4cffa6ad63731795852679!




More information about the Xep-support mailing list