Image file used for "Image Fill"

Hi,
In the "Road Trip" iWeb template there is a wood background.
I want to create a square shape and use "image fill" to make
it look like wood. Where do I find the image they are using
for this fill?
, Jonathan
Power mac G5   Mac OS X (10.4.6)  

Control-Click on the IWeb application to Show Package Contents. Then go to Contents/Resources/Shared. In that folder, again Control-Click and Show Package Contents for any of the Road Trip webtemplate packages. That's where you'll find background.jpg.
[ Visit here for iWeb Tips, Tricks and Hacks ]

Similar Messages

  • Cannot close an XML file used for parsing

    Hi All,
    I appears to have difficulty closing (possibly flushing it first) an XML file that was subsequently being parsed without success. The error generated is:
    org.jdom.input.JDOMParseException: Error on line 23: The element type "form" must be terminated by the matching end-tag "</form>".
    Below is the code snippets of readData() to retrieve (HTML) data from a website, save it to a file, then convert to XML format before returning the new filename:
    public String readData() {
        try {
              URL url  = new URL("http://www.abc.com");
              URLConnection connection = url.openConnection();      
              InputStream isInHtml = url.openStream();   // throws an IOException    
              disInHtml = new DataInputStream(new BufferedInputStream(isInHtml));         
              System.out.flush();
              FileOutputStream fosOutHtml = null;
              fosOutHtml = new FileOutputStream("C:\\Temp\\ABC.html");
              int oneChar, count=0;
              while ((oneChar=disInHtml.read()) != -1)
                  fosOutHtml.write(oneChar);
              isInHtml.close();
              disInHtml.close();
              fosOutHtml.flush();    // optional
              fosOutHtml.close();
        try {
              File fileInHtml = new File("C:\\Temp\\ABC.html");
              FileReader frInHtml = new FileReader(fileInHtml);
              BufferedReader brInHtml = new BufferedReader(frInHtml);
              String string = "";
              while (brInHtml.ready())
                  string += brInHtml.readLine() + "\n";
              fwOutXml  = new FileWriter("C:\\Temp\\ABC.xml");
              pwOutXml  = new PrintWriter(fwOutXml);
              light_html2xml html2xml = new light_html2xml();
              pwOutXml.print(html2xml.Html2Xml(string));
              system.out.flush()     // optional
              fwOutXml.flush();      // optional
              fwOutXml.close();
              pwOutXml.flush();      // optional
              pwOutXml.close();
              return fileInHtml.getAbsolutePath();
    // parseData reads the XML file using the name returned by readData()
    public void parseData(String XMLFilename)
        try
            FileReader frInXml = new FileReader(FileName);
            BufferedReader brInXml = new BufferedReader(frInXml);
            SAXBuilder saxBuilder = new SAXBuilder("org.apache.xerces.parsers.SAXParser"); // JDOMParseException generated.
    }These codes would worked when they were in a single method but I have since placed some structure around them using a number methods.
    This issue has risen in th past where I have been able to close the XML file prior to reading them again. However, I don't have a solution for it this time round.
    I am running JDK 1.6.0_10, Netbeans 6.1, JDOM 1.1 on Windows XP platform.
    Any assistance would be appreciated.
    Many thanks,
    Jack

    Hi Alain,
    I have added the additional I/O statements in the finally clause as follows but the problem still persisted:
    readData()
    // reading data (html) from the webpage and save it in html format.
    try {
    catch { …. }
    finally {
           System.out.flush();
           isInHtml.close();
           disInHtml.close();
           fosOutHtml.flush();
           fosOutHtml.getFD().sync();
           fosOutHtml.close();
    // convert the html webpage format to xml format
    try {
    catch { …. }
    finally {
           System.out.flush();
           fwOutXml.flush();
           fwOutXml.close();
           pwOutXml.flush();
           pwOutXml.close();
    Below is a short listing of the new XML file:
      <?xml version="1.0" encoding="iso-8859-1" ?>
    - <html>
    - <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <meta name="keywords" content="California, cities, towns, villages, list, zipcodes, postal codes, united states, ca" />
      <meta name="description" content="Cities, towns and suburbs in California, United States (CA) starting with A" />
      <title>Cities and Towns in California starting with A – ABC Company</title>
      <link rel="stylesheet" href="http://www.abc.com/style.css" type="text/css" media="screen" />
      </head>
    - <body>
      <a name="top" />
    - <div id="container">
    - <div id="header">
      <div id="postmark" />
    - <a href="http://www.abc.com/" class="imglink">
      <img id="logoimg" src="http://www.abc.com/images/zipcodes.gif" width="192" height="33" alt="Zipcodes America Logo" />
      </a>
      <hr />
      </div>
    - <div id="nav">
    - <ul>
    - <li>
      <a href="http://www.abc.com/" title="Home Page">Home</a>
      </li>
    - <li>
      <strong>Search</strong>
      (zipcode or suburb)
    - <div class="hide">
      <form method="post" action="http://www.abc.com/search" />        // line 23
      </div>
      <input type="text" name="q" class="searchbox" alt="Search query" />
      <br />
      <input type="submit" value="find!" class="searchbutton" alt="Perform search" />
      <div class="hide" />
      </li>
    …What I find it interesting is that it is possible to parse the above XML file with the same parseData() from another class without any problem. As a result, I have come to the following conclusion so far:
    ( i ) There is some file locking that is prevent saxBuilder from parsing the XML file at the time.
    ( ii ) The light_html2xml does not appears to have correctly converted over the orginal Html to Xml but some how it has been picked up by the parser in the same class, but not by the same parser from another class.
    ( iii ) I would like to use another conversion tool such as Tagsoup in place of light_html2xml to determine where the cause of this issue is coming from. As a result, would you or anyone be able to assist me coming up with a few lines of conversion statements using Tagsoup since I am not familiar with using this tool?
    ( iv ) light_html2xml is good as it strip out all namespace, DTD, Entity Resolver, etc and only return what I need. JTidy does correct conversion but include namespace, DTD, Entity Resolver which makes parsing difficulty.
    Many thanks again,
    Jack

  • What's  *.ser file used for?

    Hi,All,
              I got a servlet application need to test which use weblogic5.1 on NT4,
              Question 1:
              I run application use URL like,
              http://201.70.4.157:8001/booking/ServletStub?file=Chair_jsp_booking_Index_js
              p.ser
              Also, I found a data directory which contain jspbooking_Index.ser and
              others ser files
              which is used for Servlet, What's these ser file do? How did these ser
              files be generated?
              Question 2:
              When I tried to modify index.jsp file called by servlet,for instance,
              just put a space in html code(no syntax error),it give me following error, I
              undo change,
              but still got the same error untill I restore origanial version of jsp file.
              any idea?
              It looks like a custom tag error, but I didnt change it.
              Mon Nov 13 11:48:52 GMT+11:00 2000:<I> <WebAppServletContext-fflyer>
              resolving taglib uri 'http://www.bookpool.com/comm/taglib' to
              taglib-location /WEB-INF/tld/comm.tld:
              Mon Nov 13 11:48:52 GMT+11:00 2000:<E> <WebAppServletContext-fflyer> Servlet
              failed with Exception
              java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo:
              method <init>(Ljava/lang/String;ZZLjava/lang/String;)V not found
              at weblogic.servlet.jsp.MyAttInfo.<init>(StandardTagLib.java:34)
              at
              weblogic.servlet.jsp.StandardTagLib.processTag(StandardTagLib.java:303)
              at
              weblogic.servlet.jsp.StandardTagLib.processTagElements(StandardTagLib.java:1
              46)
              at
              weblogic.servlet.jsp.StandardTagLib.<init>(StandardTagLib.java:125)
              at weblogic.servlet.jsp.JspLexer.loadTagLib(JspLexer.java:87)
              at
              weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java:3611)
              at
              weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java:3367)
              at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:3228)
              at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:1669)
              at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1510)
              at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1400)
              at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:816)
              at weblogic.servlet.jsp.JspParser.doit(JspParser.java:69)
              at weblogic.servlet.jsp.JspParser.parse(JspParser.java:115)
              at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:97)
              at
              weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:242)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:248)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:173)
              at weblogic.servlet.jsp.JspStub.checkForReload(JspStub.java:92)
              at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:19
              0)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :117)
              at
              weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
              l.java:153)
              at
              au.com.qantas.ecomm.util.servlet.stub.ServletStub.restore(ServletStub.java:1
              25)
              at
              au.com.qantas.ecomm.util.servlet.stub.ServletStub.doPost(ServletStub.java:99
              at
              au.com.qantas.ecomm.util.servlet.stub.ServletStub.doGet(ServletStub.java:104
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :123)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:744)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:692)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:251)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Thanks
              

              "David" <[email protected]> wrote:
              >Question 2:
              >When I tried to modify index.jsp file called by servlet,for instance,
              >just put a space in html code(no syntax error),it give me following error, I
              >undo change,
              >but still got the same error untill I restore origanial version of jsp file.
              >any idea?
              >It looks like a custom tag error, but I didnt change it.
              >
              >Mon Nov 13 11:48:52 GMT+11:00 2000:<I> <WebAppServletContext-fflyer>
              >resolving taglib uri 'http://www.bookpool.com/comm/taglib' to
              >taglib-location /WEB-INF/tld/comm.tld:
              >Mon Nov 13 11:48:52 GMT+11:00 2000:<E> <WebAppServletContext-fflyer> Servlet
              >failed with Exception
              >java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo:
              >method <init>(Ljava/lang/String;ZZLjava/lang/String;)V not found
              > at weblogic.servlet.jsp.MyAttInfo.<init>(StandardTagLib.java:34)
              > at
              >weblogic.servlet.jsp.StandardTagLib.processTag(StandardTagLib.java:303)
              >[...blah blah JspLexer blah blah blah]
              The same problem is affecting me in a more serious way.
              I think the problem you are having is that somehow you have a Servlet-2.2.0.jar in your classpath at the time the JSP is being parsed.
              What is disturbing is that BEA claims WebLogic 5.1 supports JSP 1.1 Spec, but WebLogic "JspLexer" code tries to construct a javax.servlet.jsp.tagext.TagAttributeInfo using (String, String). The JSP 1.1 Spec says the only constructor is (String, boolean, String, boolean).
              My question is: What version of the JSP Spec does WebLogic 5.1 actually support?
              Brian
              

  • Get the WSDL-File used for proxy generation

    Hello everybody!
    I created a Web Service Proxy:
    SE80 -> Select Package -> Enterprise Services -> Client Proxies -> New -> WSDL Source: Local File.
    Everything worked out fine. I was able to create that Proxy.
    Now I would like to look at the WSDL-File that has been used:
    If I take a look at that Proxy by SE80 -> Select Package -> Enterprise Services -> Client Proxies -> [Select Proxy] -> Display in new Window -> Goto: The Menue Entry "Display WSDL Document" unfortunately is disabled.
    I have not configured the integration builder.
    Is there a possibility to get the WSDL-file that has been used for the generated proxy? Does anybody know, if the WSDL-file, that has been used for the proxy generation is archived somewhere in the system?
    Thanks,
    Andreas

    Hello,
    Thanks for your reply.
    I am using SAP ECC 6.0:
    SAP_BASIS     700     0010     SAPKB70010     SAP Basis Component
    SAP_ABA     700     0010     SAPKA70010     Cross-Application Component
    Unfortunately the tab "Proxy Generation" at Utilities -> Settings is not available with my release.
    Any other idea?
    Greetings,
    Andreas

  • What is the src.zip file used for?

    Just a few more question please.
    I've read through the JPDK install docs and it doesn't mention anything about the src.zip file. I noticed it has many references i'm interested in. What is this used for?
    I've loaded the EM and redeployed the ear file for the Oct JDPK. I've noticed after registering the Provider that about 1/2 of the Sample apps have a status of Loaded. But many indicate Not Loaded. For example: ExternalAppFlights. How do I get these loaded?
    Thanks
    Chase

    Hi Chase.
    oops i forgot to answer the second part of your question.
    The file integrating.external.provider.v2.html at %pdk_extract%\pdk\jpdk\v2\doc\externalApp contains all the details to deploy Fights of Fancy Application.
    Just go through the document & should be through.
    Regards,
    Abhinav

  • Swapping Macs, can't change the image file used for TM to a Time Capsule

    Hello ~
    I have ten Macs connected to one TimeCapsule (TC) and nine of them work flawlessly performing a TimeMachine (TM) backup. On the one that doesn't work properly, it is a PBP with Leopard 10.5.8, and latest updates. The other Macs are mixed 10.5.x and 10.6.x.
    I had a user on the PBP that I had been backing up in the past. I erased the HD and reinstalled the OS, and then created a new account. I wanted to start backing up the new account and have the name of the backup be the new name I put under Sharing Preference (I assume that's where TM gets the name of the backup).
    Well, apparently not, the name of the backup is still the old user name from Sharing, and on the old account before the computer was erased.
    I have repaired permissions, I have thrown out the TM prefs in Mac HD\Library\Preferences\, I have restarted the computer. So far I can not get the name to change on the sparse image that it copies to, even though TM says the backup completed without error.
    So, as it appears the backup is using the same old image file that this Mac had been using, the backup are separate when you go into TimeMachine, they do not seem to access each other's data, and inspecting the contents of the image, the date of the backup file is there for the new user in the old image file.
    I really would just like the PBP to stop using the old image file and create it's own image.
    Any ideas welcome!
    Thanks all
    Chaz

    I'm slightly confused. What is a PBP or did you mean a MacBook Pro (MBP)? And, what do you mean by a backup "image?" TM does not make images. Are you actually referring to the backup folder for this machine?
    If I understand correctly what you need to do is delete the old backup for this machine so TM can start from scratch with a new backup. To do that open the TM application and select your backup, then from the Finder's tool icon in the toolbar select "Delete." which should delete the entire backup.
    Also, see User Tips for Time Machine for help with TM problems. Also you can select Mac Help from the Finder's Help menu and search for "time machine" to locate articles on how to use TM. See also Mac 101- Time Machine.

  • Loading accdb file using for each loop in to single target table

    I have 3 accdb file as below in single folder, in control flow I have created a for each loop to loop through all the below file.  In dataflow task I have created oledb source using connection manager to point to first file a1.accdb. I am trying
    to load all the file into single below mentioned target table, here It is only loading first file it is not looping through other two file.
    This I have tried to load .txt files and csv files it is working perfectly but similarly when I try to load access db file table it is not working, can any one of you help me?
    1. a1.accdb contains only one table  a1tab ( col1 col2 col3 )  
    2. a2.accdb  contains only one table  a2tab  ( col1 col2 col3 )
    3. a3.accdb  contains only one table  a3tab   ( col1 col2 col3 )
    I have a target table with similar structure as source
    Target table <TargetTable> Col1 Col2 Col3
    aak

    Thanks Arthur, please find below response
    How do you handle the different table names?  Cant we handle it in a similar manner, how we handle the .csv/.txt files with different name and similar structure for sources(multiple files) and target (single table)
    Is it good to drop the idea of for each loop and create a separate task for each accdb file? to be loaded to same target table( performance wise etc.. any justification would be helpful)
    You must handle the connection string dynamically?
    Can you help me with the logic for handling connection string dynamically
    aak

  • What is "Print to file" used for? How does one use it?

    From a web page I navigate FILE-->PRINT then check 'print to file' box. Firefox saves the file to its folder in C:\Program Files..
    When later, I want to retrieve the data and print it out it refuses to be opened by any known software, including Firefox!. Even Dell seems to have no documentation on what this feature is for, or how to use it. I thought this was a convenient tool for saving print jobs for later processing. Boy was I wrong! Who knows what's going down here?

    Checking the "Print to file" was earlier one way, however maybe not the best one, to generate postscript code, if you had defined a postscript printer. This printer could be completely virtual and not necessarily exist in the real world. Many of the Hewlett-Packard printers were usable. This was in a time when just a few programs could generate pdf code, but you had the Ghostscript program and its ps2pdf tool to do the conversion. As postscript is a text format, you could also edit the file, if so wanted, before the converson.

  • To change parameter file used for tnsping

    Hi
    I can ping the server.
    I can connect to the server.
    Just for fun I want to tnsping for connectivity to it. When I try, I see this:
    C:\>tnsping prod
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 21-NOV-2008 16:22:1
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    C:\10g_Test\network\admin\sqlnet.ora
    TNS-03505: Failed to resolve name
    The parameter file worries me. The tnsnames that I have is located here
    C:\oracle\ora92\network\admin

    Dan A wrote:
    Thanks. This is peculiar:
    C:\>set tns_admin=C:\oracle\ora92\network\admin
    C:\>tnsping DEV
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 21-NOV-2008 17:12:1
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    C:\10g_Test\network\admin\sqlnet.ora
    TNS-03505: Failed to resolve name
    That is a bit strange. I'd go to the sqlnet.ora referenced (c:\10t_test\network ....) and set client trace level to 16, set client trace file to a specific value (no default) and set client trace directory to a specific value (no default). Repeat your tnsping, then dig into that trace file for clues. There will be a lot there that you don't understand, but I believe you will find clues as to why it's not looking at where you set tns_admin.
    Still using the 10g path. Yes, I could place the tnsnames there, but I would really rather not!
    Thanks.
    DA

  • Excise Transaction Type for consignment fill up / stock transfer

    Hi
    When i post excise invoice on account of removal due to sales (through J1IIN), SAP pulls uses DLFC excise transaction type. Following entry is posted at the time of J1IIN:
    Excise Duty paid A/c.. Dr
       To Excise Duty payable (Basic + ECess + SHEC)
    My requirement is, when i post excise invoice on account of removal due to consignment or stock transfer, SAP should pass following entry:
    Excise Duty paid on consignment A/c.. Dr
       To Excise Duty payable (Basic + ECess + SHEC)
    Excise Duty paid on stock transfer A/c.. Dr
       To Excise Duty payable (Basic + ECess + SHEC)
    For this, i will have to create different GL accounts and assign it to "CENVAT SUSPENSE" in excise transaction type table.
    But i does not know which excise transaction type does SAP uses for consignment fill up and stock transfer. Please suggest.

    1.basic settings-create subtransaction type.
    create subtransaction type
    cf-consignment fillup
    st-stock transfer
    2.account determination- Specify Excise Accounts per Excise Transaction
    copy DLFC and name it as DLFC and cf and also st.
    3.account determination-Specify G/L Accounts per Excise Transaction
    copy dlfc and maintain DLFC  and subtransaction type cf and also st.
    change the gl account for cenvat suspense for st and cf combination.

  • Excellent tutorials for anyone using iWork.  Colors and Image Fills!

    Have a look at the 12 part series I posted on YouTube, all about the iWork Colors inspector and the Graphic Inspector's Image Fills option.
    http://www.youtube.com/watch?v=ERC_9eiX-Ek&feature=channel
    I hope you find these useful!
    Pete

    I'm a big partisan of Sg (yea, like ... no cr*p ) and it's one of my favorite programs not just to work in (yes, I do this for professional purposes) but to play in just because ... it's dang fun. Unfortunately it's not a big enough part of my business that I can spend all day in it but oh well. That said ... you have an interesting workflow. Intriguing.
    And combining DNG files, tiffs, and a ton of key-framing I'm wondering if Sg really is your best bet, or if AfterEffects might not serve better. I think it has better ability in some of the formats and it's key-framing tracking is vastly better than Sg's is currently. You might post this also over in the Ae forum and see what gets suggested there.
    Neil

  • I have used Image Capture to scan images/documents and then saved them as either PDFs or PNG files.  For some reason, just this past week Image Capture will no longer save the file.  It scans, and the Scan Results window pops up, but it won't save file.

    I have used Image Capture to scan images/documents and then saved them as either PDFs or PNG files.  For some reason, just this past week, Image Capture will no longer save the file.  It scans, and the Scan Results window pops up, but it won't save file.
    The file name has no special character in it, just letters and no spaces.
    I have done this in the past and it has worked, but now it will not.
    I have not upgraded any software, that I am aware of.
    After scanning, the Image Capture pops up the Scan Results with the file name in the window, but neither the Scan Results nor the Image Capture window responds to inputs.  The Image Capture window is frozen, with only the "Overview" and "Cancel" buttons active (but non-responsive).
    Is this a software issue or a scanner hardware issue?  I am using a HP Photosmart C6200 series printer/scanner on a network using a Time Capsule airport.
    Thanks.

    I had the same problem.
    Got a 90% fix.  Apparently the Mavericks preferences won't work with Yosemite, so I just deleted the Image Capture preferences.
    Unfortunately, the "Scan to" folder seems to be permanently set to the Pictures folder.
    1.  Quit Image Capture
    2.  Go to Finder > Go > Home, which opens up your home folder (named after your user name)
    3.  Open Library > Preferences > com.apple.ImageCapture.plist - Drag this file to the Trash
    4.  Start "Image Capture", click "Details" and change all your settings as you prefer
    5.  Quit and restart "Image Capture".   Notice it remembers all your settings except "Scan to" folder.  It insists on saving to "Pictures".
    That's as far as I was successful.  I tried changing the "Scan to" folder to "Desktop", but on launch, Image Capture always sets it back to "Pictures".
    This is what I tried:
    6.  Download and install "Pref Setter" from http://www.nightproductions.net/prefsetter.html
    7.  Quit "Image Capture".  Right-click on "com.apple.ImageCapture.plist" and open with Pref Setter.
    8.  Search for "Pictures", which finds "~/Pictures" (the tilde character at the start means your home directory).
    9.  Double-click on "~/Pictures" and change it to the folder you prefer.  I like "~/Desktop"
    10. Choose File > Save then Quit from Pref Setter.  Note that re-opening the plist file still shows "~/Desktop"
    11. Start up "Image Capture" -- on startup, "Image Capture" sets "Scan to" folder to "Pictures"
    I consider this a bug.

  • How to know what compression format is used for images in pdf file? (jpeg2000 issue with iPad)

    I have a pdf file whose images are compressed in jpeg2000 format which the iPad doesn't support. I used Acrobat to save the pdf file using the zip compression for the images and another time using the jpg compression. I set this in the PDF Optimizer screen. The images in the pdf do not show up in the iPad.
    I am not sure if I am doing something wrong. How do I know what compression was used for the images in a pdf file?

    My work around for now is "Make Compatible with…’ from Acrobat 4.0 " which does not support JPEG2000 compression.
    http://forums.adobe.com/message/3847176#3847176

  • What compression type to use for disk image files

    Hello all
    I was wondering if a more experienced user than me could give a recommendation as to which compression format I should use to compress an image I made of my / partition. I used dd to make the image file.
    For me, (de)compression time is more important than compression ratio (size), but I'm of course looking for a good blend of both
    Thanks for any advice

    If you have a multicore processor, use pigz instead of gzip etc. Start with this app and only after you're not happy with it, look for one that's faster / compresses better.
    BTW, do you have a lot of incompressible data in there? Movies, pics, music and already compressed files won't compress any more.
    Last edited by karol (2011-01-29 16:16:03)

  • Image Fill Files Available?

    When Steve Jobs presented Keynote 3, the new 3-D charts had some very nice "Image Fill" woodgrain and marbled textures.
    I understand that those textures were included as part of a specific theme, but I would like to be able to use textures like those in a presentation with a different theme.
    Are those "Image Fill" files available somewhere? Or is there a way to use "Copy Style" and then save the style?

    You can find the woodgrains in the Leatherbook Theme.
    Save a blank leatherbook preso (with theme images).
    Thanks for your response. The good news is that it sounds like a woodgrain image file can be created.
    The bad news is that I have no idea what a "preso" is, nor how to "save a blank preso".
    Could you possibly give more specific instructions? Thanks in advance.

Maybe you are looking for

  • Where can i get a replacement screen for my iphone 5

    I dropped my phone and the lcd now has lines running down the whole of the screen and was wondering where I can get a genuine replacement screen?

  • Can't get my first Function to work!

    Hi everyone, I have been trying to make a function, but it won't compile without errors. I already checked the forum and other sites for an answer, but I can't seem to find one. So here's my function (I'm taking an integer value as an input and retur

  • Table TCOBL in ECC6

    Hi, We're currently trying to updgrade from 4.7 to ecc 6.0 and we're having some difficulties. In the transaction MIGO, we have a shortdump, screen 9000 not found. After some research we found that the screen number is taken from the table TCOBL. In

  • Blocking a material with MIGO.

    Hi gurus, i´m needing to block a material directly when doing MIGO (mov 101). is there any way to do it? ie: doing a MIGO for a material taht belongs to storage location, i want this material enter blocked automatically for these storage location. Th

  • How to configure gmake to use gcc instead of Sun cc

    I have a Makefile and use gmake yields the error: bash-3.00$ gmake g++ -O2 -Wall -c -o BoxFilter.o BoxFilter.cpp cc -O2 -Wall -c -o maxflow/maxflow.o maxflow/maxflow.c /usr/ucb/cc: language optional software package not installed gmake: *** [maxflow/