Reference article of  file "RGBsrc.pf".

Hello experts,
Reference article of "Where do i download file "RGBsrc.pf"";
Article
New Color Classes: A Programmer's Palette of Color
Printable Page
Articles Index
By Monica Pawlan
Jnuary 1998
ICC profiles (for example, RGBsrc.pf) are created by persons expert enough in color science to represent the color space of a device (monitor, printer, or scanner, for example), or a particular color conversion process.
import java.awt.color.*;
float[] ciecolor, rgbcolor;
ICC_ProfileRGB RGBpf =
ICC_ProfileRGB.getInstance("RGBsrc.pf");
Where do i download file "RGBsrc.pf". Please help me .Thanks to you. bch
bchb

So I tried it out just for kicks... The *.icm file is a ICC_Profile type but not a ICC_ProfileRGB type...
ICC_ProfileRGB IccProf = ICC_ProfileRGB.getInstance("C:\\WINDOWS\\SYSTEM32\\SPOOL\\DRIVERS\\COLOR\\E772c.icm");Generates this error...
C:\Java\SomeDir>javac ICCTest.java
AddUp.java:18: incompatible types
found   : java.awt.color.ICC_Profile
required: java.awt.color.ICC_ProfileRGB
    ICC_ProfileRGB IccProf = ICC_ProfileRGB.getInstance("C:\\WINDOWS\\SYSTEM32\\
SPOOL\\DRIVERS\\COLOR\\E772c.icm");
                                                       ^
1 error
C:\Java\SomeDir>But compile file if I do this...
ICC_Profile IccProf = ICC_Profile.getInstance("C:\\WINDOWS\\SYSTEM32\\SPOOL\\DRIVERS\\COLOR\\E772c.icm");So, at least now I know that *.icm works with ICC_Profile but not ICC_ProfileRGB which I guess you need the *.pf file...
Now, back to the castles...
- MaxxDmg...
- ' How should I know, I just wrote the d*mmed thing... '

Similar Messages

  • How to paste DTD in XML file. (not reference to .dtd file)

    Hello!
    I create XML file using DOM. How can I create DTD on the top of the file?
    I need the DTD, not a reference to it. So the next method won't work.
    transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "Resources\\Settings\\projectFile.dtd") since it is paste a reference to .dtd file. It means that if user moves XML file to other place he need to move .dtd file also, and I don't want this method. I want paste next DTD
    <!DOCTYPE project [
                        <!ELEMENT project (component*) >
                        <!ELEMENT component ANY >
                        <!ATTLIST component id  ID  #REQUIRED >
    ]>from the .dtd file on the top of my XML file. How can I do this?
    Thank you.

    I've found that by opening a inputstream to the XML file and wrapping it to filter the DTD out altogether and passing that inputstream to JAXB does the trick.
    this seems actually faster, since it doesn't go off on the net to look for the dtd!
    is this not catered for already somewhere??
    thanks,

  • DTD + Schema reference in xml file to be inserted

    Hi,
    I am pasting sample code where I want to have schema + DTD reference. Schema file is used for validating the file and DTD is needed for entity resolution.
    <?xml version="1.0" ?>
    <!DOCTYPE html [
    <!ENTITY reg    "®">
    ]>
    <html xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.xsd">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
    <meta http-equiv="Content-Script-Type" content="text/javascript" />
    </head>
    <!-- class="header" -->
    <body>
    Hi all. Register symbol should be displayed now &reg;
    </body>
    </html>I have already registered http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.xsd schema with the DB. But, when I try to insert this xml data in the DB, I'm getting the following error.
    SQL Error: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00104: Warning: element "html" is not declared in the DTD
    Error at line 5
    ORA-06512: at "SYS.XMLTYPE", line 296
    ORA-06512: at line 1
    31011. 00000 -  "XML parsing failed"
    *Cause:    XML parser returned an error while trying to parse the document.
    *Action:   Check if the document to be parsed is valid.Anyone please help me in resolving this issue..
    Thanks in advance,
    Divya.
    Edited by: user11853430 on Nov 28, 2010 8:45 PM

    Thanks for the information. I assume you are intending using Schema Based Binary XML storage. Attempting to use Object Realtional storage for XHTML is not something we would recommend. I am checking with development to see if we have a way of using the DTD just for entity resolution. In the mean time the only other solution I can think of it to include the full or partial DTD for XHTML in addition to the entity defintion..
    I tried this, but it doesn't seem to work
    SQL> select XMLTYPE(
      2  '<?xml version="1.0" ?>
      3  <!DOCTYPE html [
      4  <!ENTITY reg    "r">
      5  <!ELEMENT html ANY>
      6  ]>
      7  <html xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.xsd">
      8    <head>
      9      <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
    10      <meta http-equiv="Content-Style-Type" content="text/css" />
    11      <meta http-equiv="Content-Script-Type" content="text/javascript" />
    12    </head>
    13
    14  <!-- class="header" -->
    15    <body>
    16      Hi all. Register symbol should be displayed now &reg;
    17     </body>
    18  </html>') from dual
    19  /
    ERROR:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00106: Warning: attribute "xmlns:xsi" of element "html" is undefined
    Error at line 6
    ORA-06512: at "SYS.XMLTYPE", line 310
    ORA-06512: at line 1
    no rows selectedWhat you want is the DTD equivilant of
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <xs:element name="html" type="xs:anyType">
              <xs:annotation>
                   <xs:documentation>Comment describing your root element</xs:documentation>
              </xs:annotation>
         </xs:element>
    </xs:schema>I also tried making the xhtml-strict DTD available... but that did not appear to work
    First load the DTD and ENT files into the repository.
    C:\xdb\examples\DTD>sqlplus /nolog @loadDTD %CD%
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Nov 27 10:55:32 2010
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> spool loadDTD.log
    SQL> --
    SQL> connect system/oracle
    Connected.
    SQL> --
    SQL> create or replace directory XMLDIR as '&1'
      2  /
    old   1: create or replace directory XMLDIR as '&1'
    new   1: create or replace directory XMLDIR as 'C:\xdb\examples\DTD'
    Directory created.
    SQL> --
    SQL> declare
      2    V_RESULT             BOOLEAN;
      3    V_DTD_FOLDER         VARCHAR2(700) := '/sys/DTD';
      4    V_DTD_TRANSITIONAL   VARCHAR2(700) := '/sys/DTD/xhtml1-transitional.dtd';
      5    V_DTD_STRICT         VARCHAR2(700) := '/sys/DTD/xhtml1-strict.dtd';
      6    V_DTD_STRICT_REG     VARCHAR2(700) := '/sys/DTD/xhtml1-strict+reg.dtd';
      7    V_ENT_LAT1           VARCHAR2(700) := '/sys/DTD/xhtml-lat1.ent';
      8    V_ENT_SYMBOL         VARCHAR2(700) := '/sys/DTD/xhtml-symbol.ent';
      9    V_ENT_SPECIAL        VARCHAR2(700) := '/sys/DTD/xhtml-special.ent';
    10  begin
    11    if (not DBMS_XDB.existsResource(V_DTD_FOLDER)) then
    12      V_RESULT := DBMS_XDB.createFolder(V_DTD_FOLDER);
    13    end if;
    14    if (not DBMS_XDB.existsResource(V_DTD_TRANSITIONAL)) then
    15      V_RESULT := DBMS_XDB.createResource(V_DTD_TRANSITIONAL,bfilename('XMLDI
    R','xhtml1-transitional.dtd'));
    16    end if;
    17    if (not DBMS_XDB.existsResource(V_DTD_STRICT)) then
    18      V_RESULT := DBMS_XDB.createResource(V_DTD_STRICT,bfilename('XMLDIR','xh
    tml1-strict.dtd'));
    19    end if;
    20    if (not DBMS_XDB.existsResource(V_DTD_STRICT_REG)) then
    21      V_RESULT := DBMS_XDB.createResource(V_DTD_STRICT_REG,bfilename('XMLDIR'
    ,'xhtml1-strict+reg.dtd'));
    22    end if;
    23    if (not DBMS_XDB.existsResource(V_ENT_LAT1)) then
    24      V_RESULT := DBMS_XDB.createResource(V_ENT_LAT1,bfilename('XMLDIR','xhtm
    l-lat1.ent'));
    25    end if;
    26    if (not DBMS_XDB.existsResource(V_ENT_SYMBOL)) then
    27      V_RESULT := DBMS_XDB.createResource(V_ENT_SYMBOL,bfilename('XMLDIR','xh
    tml-symbol.ent'));
    28    end if;
    29    if (not DBMS_XDB.existsResource(V_ENT_SPECIAL)) then
    30      V_RESULT := DBMS_XDB.createResource(V_ENT_SPECIAL,bfilename('XMLDIR','x
    html-special.ent'));
    31    end if;
    32    commit;
    33  end;
    34  /
    PL/SQL procedure successfully completed.
    SQL> select ANY_PATH
      2    from RESOURCE_VIEW
      3   where under_path(RES,'/sys/DTD') = 1
      4  /
    ANY_PATH
    /sys/DTD/xhtml-lat1.ent
    /sys/DTD/xhtml-special.ent
    /sys/DTD/xhtml-symbol.ent
    /sys/DTD/xhtml1-special.ent
    /sys/DTD/xhtml1-strict+reg.dtd
    /sys/DTD/xhtml1-strict.dtd
    /sys/DTD/xhtml1-symbol.ent
    /sys/DTD/xhtml1-transitional.dtd
    8 rows selected.
    SQL> quit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64
    bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    C:\xdb\examples\DTD>However even after adding the references to the XML document
    SQL> select XMLTYPE(
      2  '<?xml version="1.0" ?>
      3  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      4          "/sys/DTD/xhtml1-strict+reg.dtd">
      5  <html xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.xsd">
      6    <head>
      7      <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
      8      <meta http-equiv="Content-Style-Type" content="text/css" />
      9      <meta http-equiv="Content-Script-Type" content="text/javascript" />
    10    </head>
    11
    12  <!-- class="header" -->
    13    <body>
    14      Hi all. Register symbol should be displayed now &reg;
    15     </body>
    16  </html>') from dual
    17  /
    ERROR:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00217: invalid character 402 (U+0192)
    Error at line 3
    Error at line 34
    Error at line 25
    ORA-06512: at "SYS.XMLTYPE", line 310
    ORA-06512: at line 1
    no rows selected
    SQL>

  • Listing tab missing in Merchandise reference article (ECC 6.0)

    Hi gurus,
    When we create a article through MM41, on listing tab there are 3 subscreens,
    The last screen Listing Tab which has Execute listing button is not appearing when creating a merchandise reference article.
    What we want to achieve is when user creates an article for a specific article type, we want  Maintain assortments manually to be ticked on always by default.
    If any more information needed, please advise,
    Thanks in advance,
    Kind regards,
    Gopio.

    Hi,
    Merchandis Reference Article cannot be listed. Therefore, there is no "Execute Listing" Button available.
    Regards,
    TK

  • How do I reference a javascript file in a jar file

    Hi all,
    I'm trying to reference a javascript file, which is contained in a jar file, from my html page.
    So far I have had no success :
    I saw a reference to the SCRIPT tag attribute ARCHIVE.
    Does this work for Internet Explorer 5?
    I tried using <SCRIPT ARCHIVE="path_to_jar"
    SRC="javascript.js"/>
    but this didn't work.
    Does anyone have any suggestions?
    Thanks for any help you can give,
    Paul

    Here is an example with an applet tag (this applet doesn't require a Java plugin):
    HTML file
    ========
    <script src="Dialog.js" archive="Dialog.jar"></script>
    <APPLET CODE = "myDialog.class" CODEBASE = "." ARCHIVE = "Dialog.jar" WIDTH = 280 HEIGHT = 80 NAME = "DIA" MAYSCRIPT = true>
    </APPLET>
    Contents of Dialog.jar file
    ====================
    META-INF/
    META-INF/MANIFEST.MF
    dialog.class
    matrix$1.class
    matrix.class
    myCanvas.class
    myDialog.class
    myPanel.class
    PicButton.class
    resource.class
    ToolTip$MAdapter.class
    ToolTip.class
    Dialog.js
    This combination works for me on NN4+ and IE5_.
    V.V.

  • How do I reference a .js file in .html on iweb to be viewed online!

    OK,
    I have a B-Ball Stat sheet I am trying to post on my website. I create the stats in excel and export the sheet to .html from there I copy the .html code and paste it in a HTML Snippet. This works GREAT!
    NOW
    I am trying to link this code to a .js file so that I am able to sort the stats by each topic. When I reference the .js file in the original .html file, the sorting works fine offline. I just need to reference the .js file so the website html can see it.
    Any help would be appreciated as I am new to .html code

    Here is an example with an applet tag (this applet doesn't require a Java plugin):
    HTML file
    ========
    <script src="Dialog.js" archive="Dialog.jar"></script>
    <APPLET CODE = "myDialog.class" CODEBASE = "." ARCHIVE = "Dialog.jar" WIDTH = 280 HEIGHT = 80 NAME = "DIA" MAYSCRIPT = true>
    </APPLET>
    Contents of Dialog.jar file
    ====================
    META-INF/
    META-INF/MANIFEST.MF
    dialog.class
    matrix$1.class
    matrix.class
    myCanvas.class
    myDialog.class
    myPanel.class
    PicButton.class
    resource.class
    ToolTip$MAdapter.class
    ToolTip.class
    Dialog.js
    This combination works for me on NN4+ and IE5_.
    V.V.

  • How to Create Merchandise Category Reference Article in IS-Retail system

    Hi Experts,
    Is there any separate Tcode to create Merchandise Category Reference articles in IS-RETAIL system.
    Whether Merchandise Category reference article is created as normal article in MM41 only?
    Whether we can assign any of the article that is created in that merchandise category as reference article in WG21 (or) is there any separate Tcode to create Reference articles.
    During Retail Implementation projects, how Merchandise Category reference article are handled???
    Any Input is highly appreciated.
    Thanks and Regards,
    Selvakumar.M

    Hi,
    With Tcode WG21 u can create MC ref. article. It is a way to create MC ref article. No need to use MM41.
    Regards,
    Rahul

  • Giving reference to XSL file in the XML file in Plumtree 5.0

    Hi,
    I need to display XML file in Plumtree context, the XML file depends on XSL file for formatting. In Plumtree context when I execute this XML file it fails to find that XSL file though I have given absolute path for that XSL file. It works fine when I execute the same outside Plumtree context. Please let me know how to give reference to XSL file in the XML so that it works fine in Plumtree context.
    Thanks in advance,
    With warm regards,
    Shivakumar

    though I have given absolute path for that XSL fileUsing absolute path is not a great idea. You can use use something like this (assuming xsl class in place where loader can reach one, for example, in WEB-INF/classes):
    InputStream baseXmlStream = this.getClass().getClassLoader().getResourceAsStream("AAA.xsl");
    You can access one through URL as well (in case XSL somewhere on image server, for example):
    url = new URL(imageServerURL + ".../AAA.xsl");
    conn = (HttpURLConnection) url.openConnection();
    int responseCode = conn.getResponseCode();
    if (responseCode != HttpURLConnection.HTTP_OK) { ...}
    baseXslStream = (InputStream) conn.getInputStream();
    ...

  • Reference Article in IS Retail

    Hi All,
    Whats the difference between creation of reference article type & the remaining article types. Do we need to maintain anything different settings for reference article type.
    Regds,
    CB

    Hi,
    Reference Articles are assigned to Merchandise Category. You can assign a merchandise category reference article to every merchandise category. You can then use it as a template when you create articles. A reference article can be assigned to more than one merchandise category.
    The merchandise category reference article is a template for all articles created in that merchandise category. The merchandise category reference article is automatically determined from the merchandise category when the new article is created. You can override this merchandise category reference article by specifying another article as a template.

  • Article created via ARTMAS05 and M.C. Reference article - Listing View

    Has anyone ever encountered the following scenario and resolved it?  We are creating articles using ARTMAS05 IDOC.  We have reference articles assigned to the merchandise categories.  The reference articles have the Basic, Listing, Sales, Logistics Store and Logistics DC views extended.  The ARTMAS05 is created so as to extend all of those views when the IDOC is processed.   The created article has all the views extended, but  the Listing view is the ONLY view where  none of the values from the reference article are copied into the created article. 
    If I add the Listing view values to the E1BPE1MAW1RT (and RTX)  segement of ARTMAS05, they are passed to the article.  Yet, I don't have to do that with the other views so it does not make sense for us to do that. 
    I am very interested in learning whether or not there is a solution to this issue as nothing we do appears to fix this.  (Other than custom development.)
    Thank you.
    Dalia

    Hi Anisha,
    In IS-Retail, you need to maintain Logistics DC and Store View of Article Master.
    To overcome this, you have two options.
    1) Maintain  Reference article in Initial Screen of MM41
    2) Otherwise Maintain reference article for MC in WG21.
    You create one reference article with Basic View, Listing, Logistics DC and Store View Details.
    Use the reference article, while creating new Article master in MM41. Its not even required now to maintain Logistics Dc and Store View for New Article. For new articles system copy's the logistics details from reference article.
    Carry out Listing in WSM3 Tcode.
    Regards,
    Selvakumar. M

  • Where do i dowload file "RGBsrc.pf".

    Hello all,
    Where do i download file "RGBsrc.pf".
    Please help me.Thanks to you.
    bch May 3,2004

    Hello,
    can you arrogant folks please tell me where I can find
    nude pics of Uma Thurman?
    Rene
    Did you not see the movie Kill Bill? The movie's not about Uma getting revenge for almost being killed, it's because they took nude photographs of her. She's hunting down those responsible and also killing those who have seen the pics. So, are you sure you want to find them?

  • Merchandise Categories and reference articles in Retail Customers

    Hello Retail friends,
    I want to use your client knowledge as a reference to my clients implementation.
    My client is implementing IS-Retail and as a result we are creating MC's to the different departments in the company.
    As we all know, MC's has reference article attached to help the creation and change process a bit easier.
    My question is as such:
    I need to keep specific information on the MC level that does not exist in the MC (Class 026) - do you have any suggestion on where to use it other than in the Reference article of the MC?
    Another question is: in other client implementations, does every MC has a unique reference article or does the reference articles shared through out the hierarchy?
    Thank you in advance
    Idan

    Hi there,
    Merchandise Category is not exactly a data retention level but a data accumulation level. If the intention is to look at sales and stock values at MC, yes we can do it as article su-total roll up to MC total and as correctly mentioned in the previous post, you can use characteristics to hold different attributes of article as master data for articles.
    Again, creation and assignment of Ref article for every MC is not mandatory and a single article can be used for more than one MC as reference article if you are just holding very basic information on it which you believe, will be common for all the articles under these MC's. Just create MC ref article for one of the MC and for the rest, just assign it manually (or if the number is higher, just create a small BDC, won't take more than 5 min to do the job of this assignment.).
    I believe your query is answered well, award points accordingly.
    Cheers
    Kunwar

  • Reference Article - Merchandise Hierarchy assignment

    I cannot find how to assign a Reference Article to a higher level node of the Merchandise Hierarchy. The docmentation mentions in several places that this assignment is possible, but I can only see how to assign these articles at the lowest level.
    I would appreciate any assistance you can offer,
    Regards
    Chris

    Hi Chris,
    as far as I know, you can only assign a reference article at the lowest level (merchandise category) of the merchandise category hierarchy.
    You can assign one reference article to several merchandise categories - in the end, if you assign a reference article to all m.c. of one node, you have the same effect as if you could assign the reference article directly on the node (even if you cannot do that in one single transaction).
    Regards,
    Tobias

  • HT1535 The reference article in question says "Manually manage music and videos" but I only have the option to "Manually manage videos" via the iPad on iTunes.  How do I actually manage music?

    The reference article in question says "Manually manage music and videos" but I only have the option to "Manually manage videos" via the iPad on iTunes.  How do I actually manage music?
    Edit: classic Apple.

    If you post from a a question from the bottom of an article's page then you should get its reference, e.g. HT1535 in your case, on the post's title. The ability to edit you post only lasts for 15 minutes and allows you to correct/add extra info.
    I get the 'manually manage music and videos' tockbox as described on that article. If you only 'videos' then are you using iTunes Match on your iPad ? I don't use it but I've seen posts that say having it enabled on a device can affect the syncing of music.

  • Reference article and site

    Hi
    I am new in Retail, having few question in reference site, and reference article. For example, if I input reference DC and store in WSS1. If I change any information in reference site or store, will the existing site copy from reference site also get update?
    Also if I input reference article in merchandise category, if i update the information in reference article, will the existing article get update ?
    thanks

    Hi Jojo,
    No need to send the EDI profile to POS. You need to configure the partner profile in SAP using transaction code WE20. In this profile, you will have to map inbound and outbound message type to enable data communication between Store and POSHQ.
    Apart from partner profile, you also need to configure the Inbound and Outbound profiles and assign to store. You may have to set distribution model (Transaction BD64) to distribute data from SAP to other systems.
    Please search SCN for detailed Inbound and Outbound details and POS Integration.
    I hope this will help.
    Regards,
    Amit

Maybe you are looking for