PixelGrabber - assistance with code needed

Hello,
I have been trying to get the color of a pixel on an image on a program for the past week. I have been advised to use pixelgrabber, and to save results in an array.
I am trying to understand it by creating a new application just for the purpose of pixelgrabbing, and then coding it properly.
Following the SUN Documentation, i have this code (no errors):
package untitled2;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.Image;
import java.awt.image.PixelGrabber;
import java.awt.image.ImageObserver;
import java.util.ArrayList;
public class Frame1 extends JFrame {
    JPanel contentPane;
    BorderLayout borderLayout1 = new BorderLayout();
    public void handlesinglepixel(int x, int y, int pixel) {
            int alpha = (pixel >> 24) & 0xff;
            int red   = (pixel >> 16) & 0xff;
            int green = (pixel >>  8) & 0xff;
            int blue  = (pixel      ) & 0xff;
          // Deal with the pixel as necessary...
       public Frame1() {
        try {
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            jbInit();
        } catch (Exception exception) {
            exception.printStackTrace();
    private void jbInit() throws Exception {
        contentPane = (JPanel) getContentPane();
        contentPane.setLayout(borderLayout1);
        setSize(new Dimension(400, 300));
        setTitle("Frame Title");
}Help needed:-
1-Can some show me where to put the code to produce the appropriate image? (do i use normal/buffered/etc)
2-Do i make an array and transfer the values of red,green,blue to postion [0][1][2]?
3-I believe i need to convert the values to an int. How is this done?
4-The "proper" program where this will be used will create multiple images based on user input. The images will be created via a loop.
Are there any issues i should be aware of ? As i understand, each pixelgrabber is unique to each image.. If i have 1000 images will that mean 1000 pixelgrabbers? (slow performance).
Where appropriate, if you could direct me to the relavent tutorial i am happy to read and learn, although i would need help as to the exact location to put the code. For question (1), as i am unsure of the exact image, i would prefer a piece of code (the image is accessed via "temp2.png").
Regards
David55

UPDATE
This code shows the rgb value of the image at a specific point (entered in code). all that is needed is to find coordinates within image.
Can anyone help clean code or offer advice?
package untitled2;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.Image;
import java.awt.image.PixelGrabber;
import java.awt.image.ImageObserver;
import java.util.ArrayList;
import java.awt.*;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
import javax.swing.JLabel;
import javax.swing.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseAdapter;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
public class Frame1 extends JFrame {
    JPanel contentPane;
    BorderLayout borderLayout1 = new BorderLayout();
    XYLayout xYLayout1 = new XYLayout();
    private BufferedImage bi[];
    JPanel jPanel1 = new JPanel();
    XYLayout xYLayout2 = new XYLayout();
    public void handlesinglepixel(int x, int y, int pixel) {
            int alpha = (pixel >> 24) & 0xff;
            int red   = (pixel >> 16) & 0xff;
            int green = (pixel >>  8) & 0xff;
            int blue  = (pixel      ) & 0xff;
            // Deal with the pixel as necessary...
    public Frame1() {
        try {
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            jbInit();
        } catch (Exception exception) {
            exception.printStackTrace();
     * Component initialization.
     * @throws java.lang.Exception
    private void jbInit() throws Exception {
        contentPane = (JPanel) getContentPane();
        contentPane.setLayout(borderLayout1);
        setSize(new Dimension(400, 300));
        setTitle("Frame Title");
        jPanel1.setBackground(Color.white);
        jPanel1.addMouseListener(new Frame1_jPanel1_mouseAdapter(this));
        jPanel1.setLayout(xYLayout2);
        contentPane.add(jPanel1, java.awt.BorderLayout.CENTER);
        bi = new BufferedImage[1];
        File f = new File("temp2.png");
            //  Read in a BufferedImage from a file.
                   BufferedImage bufferedImage = ImageIO.read(f);
                   ImageIO.write(bufferedImage, "png", f);
bi[0] = bufferedImage;
                   //  Convert the image to an RGB style normalized image.
           //        bi[0] = new BufferedImage(bufferedImage.getWidth(),
           //            bufferedImage.getHeight(), BufferedImage.TYPE_INT_RGB);
           //       bi[0].getGraphics().drawImage(bufferedImage, 198, 100, this);
    public void paint(Graphics g) {
        Graphics2D g2 = (Graphics2D)g;
        g2.drawImage(bi[0], 110, 110,null);
    public void jPanel1_mouseClicked(MouseEvent e) {
        int mouseX = e.getX();
        int mouseY = e.getY();
        int rgb = bi[0].getRGB(1, 98);
        int red = ((rgb >> 16) & 0xff);
            int green = ((rgb >> 8) & 0xff);
    int blue = ((rgb ) & 0xff);
    rgb = (red << 16) | (green << 8) | blue;
        System.out.println((red ) + " " +  (green ) + " " + blue);
System.out.print(mouseX + " / " + mouseY + " ");
class Frame1_jPanel1_mouseAdapter extends MouseAdapter {
    private Frame1 adaptee;
    Frame1_jPanel1_mouseAdapter(Frame1 adaptee) {
        this.adaptee = adaptee;
    public void mouseClicked(MouseEvent e) {
        adaptee.jPanel1_mouseClicked(e);
}

Similar Messages

  • LabView Programming :: Portland OR, Seeking a local programmer to assist with code and application develop

    I am looking for someone to professionally develop some code I've cobbled together. The
    'program' I have developed has received some acceptance within my
    larger team, and I am hoping to bring in an external expert to assist
    us with streamlining the code and creating a stand-alone executable.
    There is no real DAQ, just data manipulation.
    We are looking for LOCAL PROGRAMMERS only please. I would like to meet with any applicants in person.
    Please PM me on this forum with your resume/expertise...
    Kind regards,
    Geoff

    Geoff,
    Thanks for the post.  Could we have an email contact for you?  Or perhaps you could send me an email at jimlaudie-at-gmail-dot-com and I could reply?
    Best of luck,
    Jim

  • Problem with code need a little help

    change it and still comes up the same don;t understand what is wronge with it. new in codeing using dreamweaver c5
             Line 39,        Column 35:     document type does not allow element "div" here; assuming missing "object" start-tag    
    <div id="google_translate_element"><script type="text/javascript">
             Line 44,        Column 9:     end tag for "div" omitted, but OMITTAG NO was specified    
    </object></head>
    ✉  
             Line 39,        Column 1:     start tag was here    
    <div id="google_translate_element"><script type="text/javascript">
             Line 73,        Column 94:     required attribute "alt" not specified    
    …"><a href="index.html"><img src="bs2.jpg" width="97" height="109" /></a>   </p>

    1) It looks like you may have a <div> tag in your <head></head> section of the pages code which surrounds a <javascript> tag and its not allowed in there.
    2) You have missed out the alt="" on the image:
    img src="bs2.jpg" width="97" height="109" alt="Description here"/>
    Change this:
    <div id="google_translate_element"></div><script type="text/javascript">
    function googleTranslateElementInit() {
      new google.translate.TranslateElement({pageLanguage: 'en', autoDisplay: false}, 'google_translate_element');
    </script>
    To this:
    <script type="text/javascript">
    function googleTranslateElementInit() {
      new google.translate.TranslateElement({pageLanguage: 'en', autoDisplay: false}, 'google_translate_element');
    </script>

  • Assistance with conversion needed.

    Hello,
    I have a bunch of short webm files which i would like to edit a bit and convert to small web sized flv files.
    It's usually easiest to edit in photoshop because the edits are just in the sequencing, and the files have no audio.
    quick and easy, doesn't take long to edit and be done with, just have a issue with the many file types.
    I have also previously edited in Final Cut express and final cut pro, imovie, and idvd...
    I have an awful lot of different kinds of video converters. previously, i would convert wmv files to mov files, edit or convert into dv files for final cut express.
    I like the any video converter ultimate software, which can theoreticaly convert webm files to apple final cut, but results in an mp4, which the final cut does not recognize.
    whew, there are so many brands of video conversion softwares.
    call me cheap, but i've spent over $1500 for final cut/express/psd and do not want to spend a random $25 for a video converter.
    is there a free mac software which can turn a webm or mp4 into a mov or dv file?
    I might already have it, just too many to choose from.

    Sam Beaver wrote:
    is there a free mac software which can turn a webm or mp4 into a mov or dv file?
    I might already have it, just too many to choose from.
    Try MPEG Streamclip.
    However, if you want to convert WMV files, you will need to get one of the patd versions of Flip4Msc.
    Good luck.
    Russ

  • HT201209 I need assistance with trying to figure out how to change my security code answer

    I need assistance with trying to figure out how to change my security code answer

    If you mean the answers to your security questions, then f
    rom http://support.apple.com/kb/HT5665 :
    If you have three security questions and a rescue email address
    sign in to My Apple ID and select the Password and Security tab to send an email to your rescue email address to reset your security questions and answers (the steps half-way down that page should give you a reset link)
    If you have one security question and you know your Apple ID passwordsign in to My Apple ID and select the Password and Security tab to reset your security question.
    If you have one security question, but don't remember your Apple ID passwordcontact Apple Support for assistance. Learn more about creating a temporary support PIN to help Apple confirm your identity when you contact Apple Support.
    If you can’t reset them via the above instructions (you won't be able to add a rescue email address until you can answer your questions) then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • Need assistance with Windows 2008 R2 server BSOD - ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY (fc)

    Need assistance with Windows 2008 R2 server BSOD - ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY (fc)
    I have a Windows 2008 R2 server which is experiencing random BSOD during the night. This is occurring maybe once or twice a week. I have gathered two Memory crash files. This server is running Citrix XenApp 6.5 but nothing else is reporting an issue except
    for the memory dump. I’m looking for assistance in reading crash file and finding the cause.
    I’ve spent over a week going through articles trying to learn and trouble shoot the BSOD but no closer to understanding the WinDbg 6.3.9600 report.
    This is a production server and I have verified that Windows Updates has updated the server with latest releases. I’m hoping that the crash file will show something before I have to run the Driver Verifier.
    The crash zip file is located -
    https://onedrive.live.com/redir?resid=9644A4E0A26873B1!2359&authkey=!AMS4Svuk-SS3-JA&ithint=file%2czip
    *                        Bugcheck Analysis                                   
    ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY (fc)
    An attempt was made to execute non-executable memory.  The guilty driver
    is on the stack trace (and is typically the current instruction pointer).
    When possible, the guilty driver's name (Unicode string) is printed on
    the bugcheck screen and saved in KiBugCheckDriver.
    Arguments:
    Arg1: fffff880009eff38, Virtual address for the attempted execute.
    Arg2: 8000000002cfe963, PTE contents.
    Arg3: fffff8800da2eea0, (reserved)
    Arg4: 0000000000000002, (reserved)
    Debugging Details:
    DEFAULT_BUCKET_ID:  WIN7_DRIVER_FAULT
    BUGCHECK_STR:  0xFC
    PROCESS_NAME:  powershell.exe
    CURRENT_IRQL:  0
    ANALYSIS_VERSION: 6.3.9600.17237 (debuggers(dbg).140716-0327) amd64fre
    TRAP_FRAME:  fffff8800da2eea0 -- (.trap 0xfffff8800da2eea0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffffa80070f3648 rbx=0000000000000000 rcx=fffffa80070f3648
    rdx=fffff8800da2fbf8 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff80001680b80 rsp=fffff8800da2f030 rbp=fffff8800da2fbd0
     r8=fffff8a01804c680  r9=fffff8800da2fc68 r10=fffffffffffffffd
    r11=fffff8800da2fa90 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up di pl nz na pe nc
    nt!KiPageFault:
    fffff800`01680b80 55              push    rbp
    Resetting default scope
    STACK_COMMAND:  kb
    FOLLOWUP_IP:
    nt! ?? ::FNODOBFM::`string'+44dfc
    fffff800`017008b8 cc              int     3
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  nt! ?? ::FNODOBFM::`string'+44dfc
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  531590fb
    IMAGE_VERSION:  6.1.7601.18409
    FAILURE_BUCKET_ID:  X64_0xFC_nt!_??_::FNODOBFM::_string_+44dfc
    BUCKET_ID:  X64_0xFC_nt!_??_::FNODOBFM::_string_+44dfc
    ANALYSIS_SOURCE:  KM
    FAILURE_ID_HASH_STRING:  km:x64_0xfc_nt!_??_::fnodobfm::_string_+44dfc
    FAILURE_ID_HASH:  {aa632d36-b0f7-67cf-89e2-1cec389c0a11}
    Followup: MachineOwner

    Hi Kaysel_GTG,
    Just addition. Regarding to Bug Check 0xFC, please refer to following article and check if can help you.
    Bug Check 0xFC: ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY
    By the way, since it is not effective for us to debug the crash dump file here in the forum. If this issues is a state of emergency for you. Please contact Microsoft Customer
    Service and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request, please refer to the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    if any update, please feel free to let us know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Need Installation Assistance with Photoshop CS6

    Hi there,
    I am trying to install Photoshop CS6 on my Mac Pro running OS X 6.8 using the same installation CD I just used to successfully load it on my new MacBook Pro. The installation quits - tried it three times after restarting twice - and I get the below error message. I would appreciate your assistance with how to address this error and then get the software installed. Thanks! Bruce
    Exit Code: 34 -------------------------------------- Summary -------------------------------------- - 1 fatal error(s), 0 error(s), 0 warning(s)  FATAL: Payload '{9FC6805B-9FD9-410A-A620-51D58644999D} Camera Profiles Installer_7.1_AdobeCameraRawProfile7.0All 6.0.98.0' information not found in Media_db. -------------------------------------------------------------------------------------
    System Requirements

    Thanks for pointing me in that direction. I actually spent over two hours on the phone with tech support this morning and finally got the installation to work. I had to ultimately delete everything Adobe related from my Mac before the install worked.
    Much appreciated!

  • Hi folks, can someone help me with my redemption code? have a creative cloud id made last week. but in order to install my products I have a redemption code needed but that I can't find anywhere. can someone help me??? Thank you

    Hi folks, can someone help me with my redemption code?
    have a creative cloud id made last week.
    but in order to install my products I have a redemption code needed but that I can't find anywhere. can someone help me???
    Thank you

    I have a fully companies annual subscription of 69.99 a month.
    but I can only download the 30-day trial versions.
    and if I want to put on them completely firedamp should I enter a redemption code. could it be that the code later emailed word?
    Met vriendelijke groet,
    Dave Dros
    Van: "hans-g." <[email protected]<mailto:[email protected]>>
    Beantwoorden - Aan: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Datum: dinsdag 21 oktober 2014 10:03
    Aan: iMac <[email protected]<mailto:[email protected]>>
    Onderwerp:  Hi folks, can someone help me with my redemption code? have a creative cloud id made last week. but in order to install my products I have a redemption code needed but that I can't find anywhere. can someone help me??? Thank you
    Hi folks, can someone help me with my redemption code? have a creative cloud id made last week. but in order to install my products I have a redemption code needed but that I can't find anywhere. can someone help me??? Thank you
    created by hans-g.<https://forums.adobe.com/people/hans-g.> in Adobe Creative Cloud - View the full discussion<https://forums.adobe.com/message/6850359#6850359>

  • Need assistance with multiple issues with several G5's

    Hello All,
    I need to get some assistance with some issues that I am having with several G5 Dual’s
    I just started a new position and I have 4-G5 Dual’s that are in various states of disrepair. Normally I would call Apple support but they did not purchase the extended AppleCare packages for any of the G5’s theu purchased and they are ALL over a year old now. Any suggestions would be greatly appreciated.
    G5 number 1 - Has its fans running at full output all the time. Could this be a firmware issue?
    G5 number 2 – Had it’s logic board replaced by one of our company computer techs and now at start up gives a long tone then boots to white screen with a command prompt. Requiring me to either type “mac-boot” or “shutdown”. If I continue the boot process the machine just goes to a gray screen and stalls. I researched this yesterday and tried several solutions I found here but to no avail. Seems to me that past of the issue is that it is stuck looking for a firmware upgrade. How do I get past it?
    G5 number 3 – Mac seems to boot correctly but when you click on the Apple icon in the upper left hand corner the Finder blinks out and then comes back. It does this every time we try to go to the Apple menu. We removed the original hard drive and installed in a known good drive, our tech drive with a G5 image, rebooted the mac and the same issue occurs with the Finder.
    G5 number 4 – This unit boots to black screen with a Unix command prompt displaying “root#”. Any thoughts.
    Thanks
    Paul
    G5 Dual   Mac OS X (10.3.9)  
    G5 Dual   Mac OS X (10.3.9)  

    Apparantly someone not certified to repair them messed them up.
    Tell bossman it would be in his best interest for you to take them to a authorized Apple Repair and get it done with.
    Tell him that Mac's rarley screw up hardware wise and there really hasn't been a great demand for skilled repair techs outside of Apple.
    If your worried about your job, tell him you can take care of the software, training, minor hardware and networking end of the matter. Which, luckily for you, are longtern and ongoing needs. You can tell him that.
    There's nothing wrong in admitting you don't know how to do something and keeping your job, than to be unable to fix them and lose your job.

  • OXS server 3 with mavericks, it will not load up the assistant with open directory and will not allow me to use old open directory it was not a clean install just upgrade. any help or advise appreciated as i really need the server.

    OXS server 3 with mavericks, it will not load up the assistant with open directory and will not allow me to use old opeopen directory and will not allow me to use old open directory it was not a clean install just upgrade. any help or advise appreciated as i really need the server.

    I wonder if the disk being referred to is actually your iPod which is not plugged in. Maybe something has stuck thinking the iPod should be there.
    Try completely removing all the iTunes related programs according to this method.
    http://support.apple.com/kb/HT1923
    Restart you PC and see if startup improves.
    If it doesn't improve you need to consider the possibility that there is something else going on.
    If The problem goes away, hopefully a fresh install will be OK.

  • Need assistance with my Porsche Design LaCie Time Capsule... It is not operating at all.. I have ran the diagnostic via the Disk Utility and under the error reading it runs the repair and then says it not about to repair what do I do... Thanks

    Need assistance with my Porsche Design LaCie Time Capsule... It is not operating at all.. I have ran the diagnostic via the Disk Utility and under the error reading it runs the repair and then says it not about to repair what do I do... Thanks

    LaCie doesnt make ANYTHING.  It contains a Seagate 3.5" 5400RPM HD.
    Check the HD on another computer, if nothing, your SATA bridge is fried, or the HD (very unlikely since its a Seagate inside)
    Youd have to crack open the HD, remove the SATA bridge cart thats plugged into the HD and put the HD into an enclosure or a HD dock to get the data
    those external HD use a 50 cent SATA bridge famous for failing.  The curse of all the good HD externals is the junk 3rd party SATA bridges attached to them that crash and burn.
    Sata bridge:

  • I need assistance with uploading pictures from mobile connection to computer

    I need assistance with uploading pictures from my mobile to my computer

    I need assistance with uploading pictures from my mobile to my computer

  • I need assistance with changing language from German to English

    I need assistance with changing language from German to English. Unable to uninstall product from control panel.

    What exactly means "unable"?
    Since you mention Control Panel, I assume that you are on Windows.  Try using http://labs.adobe.com/downloads/acrobatcleaner.html

  • Need Assistance with Plugin

    I am trying to acess my Nascar trackpass. I keep getting an error message that my flashplayer plug in keeps crashing. What Can I do?

    Hi Kaysel_GTG,
    Just addition. Regarding to Bug Check 0xFC, please refer to following article and check if can help you.
    Bug Check 0xFC: ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY
    By the way, since it is not effective for us to debug the crash dump file here in the forum. If this issues is a state of emergency for you. Please contact Microsoft Customer
    Service and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request, please refer to the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    if any update, please feel free to let us know.
    Hope this helps.
    Best regards,
    Justin Gu

  • SRM MDM, Error, "Table with Code 'null' does not exist in repository"

    Hi experts,
    We has SRM MDM scenario, while doing OCI settings, we are able to connect with MDM repository but getting follwoing error message in portal, "java.lang.IllegalArgumentException: Table with Code 'null' does not exist in the repository 'Repository' or is one of the system table (e.g. Workflows) that is not exposed in repository schema" 
    Can You please suggest,
    Thanks and Regards,
    Munish

    Hi everyone,
    Sudhanshu and Anshuk:- Thanks for your response, let me try and explain the real scenario in details:-
    We have deployed the SRM-MDM Catalog Search UI in Portal.
    We tried accessing the http://<Portal Host>:<Portal Port>/SRM-MDM/SRM_MDM
    Then we got a screen (Search UI App screen), where in we have provided the MDM Server name, then the MDM Server Password, then presses the Connect button, then below this, it displayed the Repository name created in the MDM. We have selected the Repository, then provided the Credentials of a User (Name: T_CORP) in MDM which has "Catalog Manager", and the "UI Configuration Manager" Roles. Please note that these Role names were created by us in MDM. Is it the right procedure or do we have any standard Roles delivered by SAP in MDM to map? If any standard Roles are available, where we need to check these.
    Once the Credentials of MDM User is provided, and then selected the "Login" button.
    Then we are getting the below error.
    "java.lang.IllegalArgumentException: Table with Code 'null' does not exist in the repository 'Repository' or is one of the system table (e.g. Workflows) that is not exposed in repository schema"
    Please clarify; we are not configuring any values in iViews. Where we need to do this, I mean name of the iView, and what values do we need provide generally? We are just running the Search UI App application; I don't think it is an iView, because the URL shows the Application name details, etc...
    Please guide us, how to fix this Error.
    Thanks and Regards,
    Munish

Maybe you are looking for

  • Lion Server with PCs on Network

    This setup would be a Mac mini running OS X Lion Server serving only PCs. Anyone have experience and comments/suggestions on using Lion Server to serve PCs in a classroom environment? (Small school) What do you do about virus protection for PCs? Loca

  • VAT Conditions

    Dear SAP Gurus, My client is asking the difference between the RM VAT(JVRD,JVRN) Conditions and CG VAT Conditions(JVCD,JVCN) . Why SAP has provided 2 different condition types for Raw Material and Capital Goods . And also what is the difference betwe

  • Calling methods from Command prompt

    Hi, OK this may seem crazy:). Is it possible to call a method from the command prompt directly?. For eg. I have a class UFOSeeker that has a static method getPosinSky. Is it possible to just call this method directly form the cmd prompt?, something l

  • I need software that enables me to switch between different modes/profiles on my Mac

    I need software the allows me to switch between modes with a click on my computer. For example: Mode 1:      Disables the screen saver                   Changes power settings                   Changes the wallpaper Mode 2:      Sets everything to st

  • Best way to upgrade from Jaguar to Tiger?

    I am upgrading from Jaguar 10.2.8 on my G4 DP1.25 machine to Tiger 10.4.3 and would like some advice on how to best do the upgrade before i start. This is my first time doing any real OS upgrade on my mac. I used to do it all the time on my windows p