Tool to make easy code for making pictures in java

e.g.
g.drawLine(10,10,50,100)
Is there a simple tool where I can draw a line on a screen and that that tool gives me then the right coordinates to put it in the java code?
Of course this simple line is just an example.
I want to use this to create advanced pictures in a Java applet.
I hope you guys understand what I mean. I'm from Belgium and my English is not very very good.
thx for reading this!

I'm searching just for a more simple tool with interface of Paint for example where I can make pictures. That tool gives than the right code in java.
Just like when you in eg Dreamweaver make a webpage and then gereates the html code.
I'm almost sure this must exist but I can't find a tool like that... :-(

Similar Messages

  • Whats a good and easy software for making websites?

    I need to make a website for our business, not sure how do this.

    Website buidling can be tricky, but there are some great online template builders out there. For my personal website, I use SquareSpace. It's cheap ($90 per year), it's easy to use, and it offers great templates.
    Professional website builders need to actually know how to code, which consists of learning computer languages like HTML, CSS, and JavaScript. Don't bother yourself with these, as they take extensive training to learn.
    Instead check out these sites:
    www.squarespace.com, www.wix.com, www.wordpress.com, www.zenfolio.com, www.fatcow.com, and www.asmallorange.com.
    In the future, I would go to other forums to ask questions about website building, as it doesn't really pertain to macintosh in particular.
    Hope this helps!

  • How do i make a map for my pictures

    hello do anybody know how to make a map for my fotos so that i can have pictures of my friends in one and have pictures of my family in another

    How would a "map" be applicable to this? Do you mean separate folders for different groups of photos?

  • Tools to debug AGAL code for shaders

    Hello,
    Those last few days I was working on some AGAL code, to create some shaders.
    But I sometimes encounter some problems when it comes to debug my code...
    Especially to know what is the current value of ft0 or ft0.x, etc.
    So, my question is :
    Do you know some tools; or tips, to debug your shaders ?
    It would be so cool to share about it
    I've heard about PIX in this blog post : http://jpauclair.net/2011/03/01/zombietycoon-molehill-session-at-flashgamingsummit/
    But It doesn't seem to work with our browser... So bad ! I may be wrong somewhere
    Thanks a lot per advance !

    You can use PIX fairly easily with Molehill - i'm not sure how to get it working in the web browser, but if you use a standalone player it's easy. Of course, you'll need to be running on a PC and have molehill using the directX9 driver for this to work.
    Grab the Unofficial Standalone Player here: http://blog.ascensionsystems.ca/?p=147
    Then grab the latest DirectX SDK and fire up PIX for windows. You just need to point it at the standalone player, and configure the command-line argument path to your swf, and you're in business.
    Tips on how to use PIX: http://msdn.microsoft.com/en-us/library/ee417184(v=vs.85).aspx
    You can debug shader code, individual pixels, draw timings, buffer contents, and so much more - very helpful stuff. It's also nice to be able to see what the molehill implementation is doing behind the scenes.

  • Help:i need a code for making a new text file then adding 1 blank line

    i have done makng load, edit and save for a command line text editor. now my problem is, i dont know how to make a new blank text file and store it on the current directory. and i need to have that new text have 1 blank line with full of white space. help please.

    PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("NewBlankTextFile.txt")));
    pw.println("                                                                                                                                         ");
    pw.close();

  • How to make promo code for others app

    hi!
    i just see an online store that sell applications with some code which that site named "Redeem code" and after you bought you redeem the code and application will be in your list
    i just find out its promo code and after google it i was available to your own application
    so ...
    what is this? how can i get this promo code? its "GIFT the application" that is appear below the description of any app?
    thanks !

    mahkam wrote:
    what is this? how can i get this promo code? its "GIFT the application" that is appear below the description of any app?
    It’s not a promo code.
    When you select to Gift this application, you purchase the app with your credit card and an email is then sent to whoever you choose and the app is then added to their iTunes account.

  • FF 3.6.12 - The text is very light and " sketchy " making it difficult to read anythibg. I cannot find a way to mannually make an adjustment for making it clearer and more solid. Anyone have a thought on this ?

    My resolution is set to 140 x 900. This seems to be part of the issue. If I zoom in ( Cntl + scroll ) just one notch text is perfectly clear - but still stays the same in the address bar and FF toolbars and menus, but mis-aligns some pages.
    This res. is fine for my "Chrome", which I use, but my wife is really on about thinking I can fix this through some W7/Control Panel fussing. This issue has really become distracting with updating to 3.6.12.

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages
    Is ClearType enabled?
    Control Panel > Personalization > Window Color and Appearance > Effects: "Use the following method to smooth edges of screen fonts"

  • Can make a menubar for a picture control?

    Hello,
    There is such an idea: right click a picture control, it can popup a menu, by choosing the menu item, I can execute a specific task. Is there any way to achieve the design?
    David

    Some example of RunPopupMenu usage can be found here and here
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Need code for making shade for alternate row

    i want to show it my report's row as shade every other row.
    how to do it.
    thanks

    Duplicate Post!!!!
    You have already posted this query in the Reports forum and you have been given an answer.

  • Need Sample Code for Vendor creation using JAVA API

    Hi,
    I have a scenario like Vendor creation using <b>Java API</b>.
    1.I have Vendors (Main) Table.
    2.I have <b>look up</b> tables like Account Group.
    3.Also <b>Qualifier table</b>(Phone numbers) too.
    Could you please give me the sample code which helps me to create Vendor records using Java API?
    <b>I need Code samples which should cover all of the above scenario.</b>
    <b>Marks will be given for the relevent answers.</b>
    Best Regards
    PK Devaraj

    Hi Devraj,
    I hope the below code might solve all your problem:-
    //Adding Qualified field
    //Creating empty record in Qualifed table 
    //Adding No Qualifiers
    Record qualified_record = RecordFactory.createEmptyRecord(new TableId(<TableId>));
    try {
    qualified_record.setFieldValue(new FieldId(<fieldId of NoQualifier), new StringValue(<StringValue>));//Adding No Qualifier
    catch (IllegalArgumentException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    catch (MdmValueTypeException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    //Creating Record in Qualified table
    CreateRecordCommand create_command = new CreateRecordCommand(connections);
    create_command.setSession(sessionId);
    create_command.setRecord(qualified_record);
    try
    create_command.execute();
    catch(Exception e)
    System.out.println(e.toString());
    RecordId record_id = create_command.getRecord().getId();
    //Adding the new record to Qualifed Lookup value and setting the Yes Qualifiers
    QualifiedLookupValue lookup_value = new QualifiedLookupValue();
    int link = lookup_value.createQualifiedLink(new QualifiedLinkValue(record_id));
    //Adding Yes Qualifiers
    lookup_value.setQualifierFieldValue(0 , new FieldId(<FieldID of Yes Qualifier>) , new StringValue(<StringValue>));
    //Now adding LookUP values
    //Fetch the RecordID of the value selected by user using the following function
    public RecordId getRecordID(ConnectionPool connections , String sessionID , String value , String Fieldid , String tableid)
    ResultDefinition rsd = new ResultDefinition(new TableId(tableid));
    rsd.addSelectField(new FieldId(Fieldid));
    StringValue [] val = new StringValue[1];
    val[0] = new StringValue(value);
    RetrieveRecordsByValueCommand val_command = new RetrieveRecordsByValueCommand(connections);
    val_command.setSession(sessionID);
    val_command.setResultDefinition(rsd);
    val_command.setFieldId(new FieldId(Fieldid));
    val_command.setFieldValues(val);
    try
         val_command.execute();
    catch(Exception e)
    RecordResultSet result_set = val_command.getRecords();
    RecordId id = null;
    if(result_set.getCount()>0)
         for(int i = 0 ; i < result_set.getCount() ; i++)
         id = result_set.getRecord(i).getId();     
    return id;
    //Finally creating the record in Main table
    com.sap.mdm.data.Record empty_record = RecordFactory.createEmptyRecord(new TableId("T1"));
    try {
         empty_record.setFieldValue(new FieldId(<FieldId of text field in Main table>),new StringValue(<StringValue>));
         empty_record.setFieldValue(new FieldId(<FieldId of lookup field in Main table>), new LookupValue(<RecordID of the value retrieved using the above getRecordID function>));
    empty_record.setFieldValue(new FieldId(<FieldId of Qualified field in Main table>), new QualifiedLookupValue(<lookup_value>));//QualifiedLookUp  value Retrieved above
    } catch (IllegalArgumentException e1) {
    // TODO Auto-generated catch block
         e1.printStackTrace();
    } catch (MdmValueTypeException e1) {
         // TODO Auto-generated catch block
         e1.printStackTrace();
    //Actually creating the record in Main table
    CreateRecordCommand create_main_command = new CreateRecordCommand(connections);
    create_main_command.setSession(sessionId);
    create_main_command.setRecord(empty_record);
    try
         create_main_command.execute();
    catch(Exception e)
         System.out.println(e.toString());
    Thanks
    Namrata

  • Easy question for any over-critical java tech!

    hi over-critical java tech man/woman. i have this class library for org.apache.poi.* .. which i will be using to manipulate .xls and .doc type files. i need help installing it. i havnt tried any command-line stuff yet, which im sure is the right way to go. ive been dragging and dropping into the src.zip file .. which could be harmful .. yes? oh boy im in for some scrazy responses

    thanks for the reply duffy,
    I looked through the .jar file I was using and it contained all the necessary classes I needed to compile my java file. In my java file, I have included the line:
    import org.apache.poi.*;
    as a package to try and obtain all the necessary classes needed to compile my file.
    In the jar file the folders are ordered in that exact order:
    org/apache/poi/'all class folders here'.
    when I type the following into the command prompt and press enter:
    java -cp ;c:\poitools\poi-2.5.1-final-20040804.jar
    i get the following message:
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -client to select the "client" VM
    -server to select the "server" VM
    -hotspot is a synonym for the "client" VM [deprecated]
    The default VM is client.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A ; separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -version:<value>
    require the specified version to run
    -showversion print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
    include/exclude user private JREs in the version search
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions
    -agentlib:<libname>[=<options>]
    load native agent library <libname>, e.g. -agentlib:hprof
    see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:<pathname>[=<options>]
    load native agent library by full pathname
    -javaagent:<jarpath>[=<options>]
    load Java programming language agent, see java.lang.instrument
    But I'm confused, because I'm following the steps found on a 'java classpath website'. I guess I'll keep trying, but I'm exhausted from doing the same thing over and over again.

  • Tools for extracting strings from java code for internationalization

    For legacy code with lots and lots of strings what method is typically used to extract strings for internationalization?
    Am I right in thinking you couldnt simply grep for strings, it could get pretty complitcated, especially with escape characters, escaped quotes etc.,
    -SK

    When dealing with legacy code, it is nice to have an application that queries you as it extracts the strings. You have a choice whether to accept the string as a localizable entity or not.
    There are several tools that do this...including some IDEs like JBuilder. Although it isn't a fully supported or robust tool, Sun has a utility for extracting strings in Java source files:
    http://java.sun.com/products/jilkit/.
    Regards,
    John O'Conner

  • Best Settings for making a Secure, Reliable Disk Image?

    Hi guys!
    Can anybody direct me to the best settings that can be used to make a secure Disk image using the MacOS X disc utility?
    I wish to make my computer family friendly, yet keep my proffessional and private files secure/private and innaccesible to children and unautorized individuals. I have heard that files saved inside encrypted images (password protected) are also not indexed in the finder wich is perfect for the privacy I seek (this is true right?).
    I know how to access the tools, but the right settings for making a trustworthy image remain elusive. Already tried with some of the formats and information placed inside...started becoming glitchy and unreliable, even after removing the files and making them unencrypted again.I'm abaout to try with the HFS+ format.
    I cannot lose the files I wish to protect. But I need to secure them and if anything, be capable of backing up the image by copying it into a HFS+ formated external hard drive every once in a while. Can this be done?
    Is there a risk of data loss in the encryption process? One of my external drives (FAT 32) even started to make unrelated neighboring folders "disappear" after making an image inside ( I though I could make an image anywhere and save stuff securely at that point...but nearly losing the entire cashe of info made me backtrack and simply avoid the process until i'm sure of what I'm setting up---so many compatibility problems!)
    • Don't know what settings to use.
    • Some say there is a small chance of a disk image being damaged or corrupted (for no reason whatsoever)...but having trouble right off the bat, with a brand new image worries me. WHAT ARE THE RISKS? Is the system unrefined and unrealiable?
    I plan to make the Image a sparse file,using the HMS+ format, 400GB....regular encryption. I plan to copy all my sensitive stuff inside and delete unprotected copies. Risky? Are images unreliable in general? or where my glitches abnormalities?---Can the images hold collections of files or do they become more unrealiable the bigger they get (what I fear). I don't wan't to have to make dozens of images to protect my files.
    Can a external drive be formated to HMS+ and accept  a drag and dropped copy of a 400GB image? FAT32 will just not accept it. Would there be risk of the image being damaged in the transfer? NOTE that copying the data into an external drive would be to have a secure backup of the data. If I can't trust the backup to be carbon copy intact...it isn't a backup.
    Securing files is really proving to be bothersome, despite having "refined" tools at my disposal.
    Thanks for your help!

    Do you place your backups on external disks? Are your external disks formatted HFS+?
    Can HFS+ Disk image be Drag dropped into a HFS+ formatted external disk in order to copy them? or is the process blocked like what happens to large Disk images in FAT 32?
    I'm trying to lock on to the right format to apply to everything. My steps will be:
    Make the image: So far a sparse image in HFS+ format, 400 GB, No partition map.
    Drag sensitive work to Disk image. Once transfer in complete delete originals.
    Format an external disk into the journaled HFS+ format. Drag drop Secure disk image to back it up.
    Do you see any problems with this process? Anything i'm missing?

  • How to find my restriction code for Iphone 5

    h i c f m i  r c

    If you are referring to the restrictions code for making changes in Settings, you are the one that has to create that, so you would be the only one to know that. If you cannot remember the restrictions passcode, you will have to restore the device as new, since the passcode is contained in the backup. Make sure all of your data is synced to the computer, since you will have to recreate things. You will not be able to use your backup.

  • "WRITE CODE FOR ME"

    SALAM COMPUTER SIR,
    I AM STUDENT OF COMPUTER SOFTWARE ENGINEERING .PLEASE HELP ME ABOUT I SEND YOU PICTURE OF MY PROJECT.PLEASE YOU MADE CODING FOR THE PICTURE IN JAVA LANGUAGE.PLEASE YOU GIVE ME SOURCE CODE OF THIS PROJECT PICTURE IN JAVA LANGUAGE.MY ENGLISH LANGUAGE IS VERY WEAK.PLEASE YOU SEND ME SOURCES CODE OF THIS BANK PROJECT.THIS IS 1ST PICTUTE OF BANK PROJECT.YOUR WEBSITE IS VERY GOOD.MY E_MAIL ADDRESS IS [email protected] IF YOU SEND ME E_MAIL.
    THANKS SIR
    http://www.codeguru.com/forum/showthread.php?t=367047
    THIS IS MY 1ST PICTURE OF MY JAVA BANK PROJECT.

    try to study this:
    Creating a GUI with JFC/Swing
    http://java.sun.com/docs/books/tutorial/uiswing/

Maybe you are looking for