How can i draw on photoshop?

i have been trying and looking for ways at which i can be a digital artist with the assistance of photoshop?

Illustrator would be a better application for that.

Similar Messages

  • How can I draw in Photoshop CS6 with a touchscreen?

    I recently got an Asus Q551L laptop with touchscreen and running on Windows 8.1 and cannot use the touchscreen to draw in Photoshop CS6. I can use it to choose a tool but when I drag my finger across a layer, it does not draw unless I start in the gray area surrounding the image. I have tested a few programs including Microsoft Paint and Illustrator CS6 and I can start drawing in the middle of the image like what I wanted; it's only Photoshop with this problem of not being able to draw unless I start at the edge. So how can I fix this? 

    Photoshop relies on the pressure sensitivity that is so popular with the Wacom tablets. This means that it ignores the capacitive pen when drawing. But seams to work fine for other features like accessing the UI buttons. I am not sure how this helps you since I do not know what pens will work on your screen. But maybe this will at least point you in the right direction.

  • How can I draw image in a vbean?

    How can I draw image in a vbean?
    this is my code :
    import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.Graphics;
    import java.net.MalformedURLException;
    import java.net.URL;
    import com.sun.jimi.core.Jimi;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VBean;
    public class PrintEmailLogo extends VBean {
         URL url;
         Image img;
         boolean ImageLoaded = false;
         public void paint(Graphics g) {
              if (ImageLoaded) {
                   System.out.println("yes~~~");
                   g.drawImage(img, 0, 0, null);
              } else
                   System.out.println("no~~~");
         public boolean imageUpdate(Image img, int infoflags, int x, int y, int w,
                   int h) {
              if (infoflags == ALLBITS) {
                   System.out.println("yes");
                   ImageLoaded = true;
                   repaint();
                   return false;
              } else
                   return true;
         public void init(IHandler arg0) {
              super.init(arg0);
              try {
                   url = new URL("file:print/77G.gif");
                   img = Jimi.getImage(url);
                   Image offScreenImage = createImage(size().width, size().height);
                   Graphics offScreenGC = offScreenImage.getGraphics();
                   System.out.println(offScreenGC.drawImage(img, 0, 0, this));
              } catch (MalformedURLException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    but when I run it in forms
    when it run Graphics offScreenGC = offScreenImage.getGraphics();
    It throw a exception:
    java.lang.NullPointerException     at com.avicit.aepcs.calendar.PrintEmailLogo.init(PrintEmailLogo.java:72)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.processEventEnd(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)     at java.awt.Component.dispatchEventImpl(Unknown Source)     at java.awt.Container.dispatchEventImpl(Unknown Source)     at java.awt.Component.dispatchEvent(Unknown Source)     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)     at java.awt.Container.dispatchEventImpl(Unknown Source)     at java.awt.Component.dispatchEvent(Unknown Source)     at java.awt.EventQueue.dispatchEvent(Unknown Source)     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)     at java.awt.EventDispatchThread.run(Unknown Source)
    I change it to:
    import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.Graphics;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.swing.JFrame;
    import com.sun.jimi.core.Jimi;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VBean;
    public class PrintEmailLogo extends VBean {
         URL url;
         Image img;
         public void paint(Graphics g) {
              try {
                   url = new URL("file:print/77G.gif");
                   img = Jimi.getImage(url);
                   g.drawImage(img, 0, 0, this));
              } catch (MalformedURLException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public void init(IHandler arg0) {
              super.init(arg0);
    But it display nothing.
    It isn't paint continuous.
    what's wrong in my vbean?
    please help me.

    The following code works fine for me:
    package oracle.forms.fd;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.CustomEvent;
    import oracle.forms.ui.VBean;
    public class test extends VBean {
      private URL url;
      private URL m_codeBase; 
      private Image img;
    public void paint(Graphics g) {
      // draw the image
      g.drawImage(img, 0, 0, this);
    public void init(IHandler arg0) {
       super.init(arg0);
       // load image file
       img = loadImage("file:///c:/coyote.jpg");   
    public test()
        super();
       *  Load an image from JAR file, Client machine or Internet URL  *
      private Image loadImage(String imageName)
        URL imageURL = null;
        boolean loadSuccess = false;
        Image img = null ;
        //JAR
        imageURL = getClass().getResource(imageName);
        if (imageURL != null)
          try
            img = Toolkit.getDefaultToolkit().getImage(imageURL);
            loadSuccess = true;
            return img ;
          catch (Exception ilex)
            System.out.println("Error loading image from JAR: " + ilex.toString());
        else
          System.out.println("Unable to find " + imageName + " in JAR");
        //DOCBASE
        if (loadSuccess == false)
          System.out.println("Searching docbase for " + imageName);
          try
            if (imageName.toLowerCase().startsWith("http://")||imageName.toLowerCase().startsWith("https://"))
              imageURL = new URL(imageName);
            else if(imageName.toLowerCase().startsWith("file:"))
              imageURL = new URL(imageName);
            else
              imageURL = new URL(m_codeBase.getProtocol() + "://" + m_codeBase.getHost() + ":" + m_codeBase.getPort() + imageName);
            System.out.println("Constructed URL: " + imageURL.toString());
            try
              img = createImage((java.awt.image.ImageProducer) imageURL.getContent());
              loadSuccess = true;
              System.out.println("Image found: " + imageURL.toString());
              return img ;
            catch (Exception ilex)
              System.out.println("Error reading image - " + ilex.toString());
          catch (java.net.MalformedURLException urlex)
            System.out.println("Error creating URL - " + urlex.toString());
        //CODEBASE
        if (loadSuccess == false)
          System.out.println("Searching codebase for " + imageName);
          try
            imageURL = new URL(m_codeBase, imageName);
            System.out.println("Constructed URL: " + imageURL.toString());
            try
              img = createImage((java.awt.image.ImageProducer) imageURL.getContent());
              loadSuccess = true;
              System.out.println("Image found: " + imageURL.toString());
              return img ;
            catch (Exception ilex)
                    System.out.println("Error reading image - " + ilex.toString());
          catch (java.net.MalformedURLException urlex)
            System.out.println("Error creating URL - " + urlex.toString());
        if (loadSuccess == false)
          System.out.println("Error image " + imageName + " could not be located");
        return img ;
    }Francois

  • I cannot locate my cs6 redemption code and I just purchased a new computer because my old one doesn't work anymore. How can I get my photoshop on this computer? All my other products are registerd with a serial number

    I cannot locate my cs6 redemption code and I just purchased a new computer because my old one doesn't work anymore. How can I get my photoshop on this computer? All my other products are registerd with a serial number

    The activation servers for CS and CS2 stopped working and were taken down. You'll need to take a look at this link for your issue: https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Benjamin

  • How can i turn a photoshop file into a website with knowing code? can i upload Muse or DreamWeaver?

    How can i turn a photoshop file into a website with knowing code? can i upload Muse or DreamWeaver?
    I created a few images (pages for a site) on photoshop and want to turn them into HTML code for a website- Can i Just upload the file into one of these programs and make a file with the correct code imediatly?
    I was reading about using EDGE Reform but i did not understand if i can create the code with it, in the end it says it still needs to be sent to website developer after?

    You need to look at Dreamweaver as a code editor. You need to learn to create good, clean HTML code with style sheets to make websites with Dreamweaver.
    There are tutorials that will take you from a layered .PSD file to HTML. Here's a good one:
    http://net.tutsplus.com/tutorials/site-builds/from-psd-to-html-building-a-set-of-website-d esigns-step-by-step/
    Adobe's Muse is a semi-WYSIWYG website layout creator for small websites (1-5 pages). But there is no way you can go from a .PDS file to Muse, you have to start the site in Muse.
    I have seen a few Muse sites and they're OK, but there is some code that Muse creates that is kind of odd. If you want a good, clean website that will work for you or your business, Dreamweaver is the best choice. Alternatively, you could hire a pro.
    -Mark

  • How can I uninstall my Photoshop CS 3 from my Mac, without an uninstaller?

    How can I uninstall my Photoshop CS3 from my Mac OS Extended (Journaled)?   It has never opened, since I increased the Mac's capacity to 2 TB.  Now I want to throw the Photoshop CS3 away and get a brand new Photoshop CS5.    There does not seem to be an uninstaller anywhere to be found.  Adobe spent an hour and a half on the phone with me and could not find a work-around.   We tried to reinstall the CS3 from the disk, but the installations failed. 
    An earlier Photoshop CS2 is also on the computer and needs to be uninstalled. 
    Is there a way to rescue my computer and put the new Photoshop on it?

    You need to manually delete the caps.db (somewehre in the Library:Application Support:Adobe folder) and then you can trash the program folders. Without an existing caps.db, a new one wil lbe created from scratch and al linstalls should run as if there never was anything on the system just as conversely you should not have trouble simply deleting the old versions...
    Mylenium

  • How can I quit (close) Photoshop and keep all windows so that the next time I open Photoshop the fil

    How can I quit (close) Photoshop and keep all windows so that the next time I open Photoshop all the files that I had open are there already in the same position as when I closed Photoshop?
    I've been a Fireworks user for over 10 years and just switched to Photoshop. I cannot find a setting that will enable all my file windows to reopen when I quit Photoshop. This is really a problem since I often work on several files at the same time.
    Please let me know if the feature exists or point me to where I can post a message for a new feature to be implemented. The feature is a must for any designer working on large projects.
    Thanks!

    There is no such functionality. You could perhaps create a script that stores that info in a custom text file and arranges them accordingly in the workspace, but that's as good as it gets...
    Mylenium

  • Help!How can i draw an image that do not need to be displayed?

    I want to draw an image and save it as an jpeg file.
    first I have to draw all the elements in an image object.I write a class inherit from Class Component,I want to use the method CreateImage,but I get null everytime.And i cannot use the method getGraphics of this object.Thus i can not draw the image.
    when i use an applet,it runs ok.I use panel and frame,and it fails.
    How can i draw an image without using applet,because my programme will be used on the server.
    Thank you.

    you could try this to create the hidden image
    try
              GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice gs = ge.getDefaultScreenDevice();
              GraphicsConfiguration gc = gs.getDefaultConfiguration();
              offImage = gc.createCompatibleImage(100, 100);
              offG = offImage.getGraphics();
          catch(Exception e)
              System.out.println(e.getMessage());
          }

  • How can I save a Photoshop Elements 12 file as HTML?

    How can I save a Photoshop Elements 12 file as HTML?

    Sorry, not possible in PSE itself. You'd need to put your photo into the web creation software you use. If you are using an older version of PSE some versions created web albums/galleries which included an index.html page, but that's as much as PSE does. There's nothing like that in PSE 12 since Adobe wants you to use Revel for photo sharing now.

  • How can I download & install Photoshop CS 5.1 for Mac?

    I bought a new MacBook Pro with no CD drive, how can I download & install Photoshop CS 5.1 for Mac (I have my legit license key)

    Hi Andrew,
    Please use the below link to download CS5 Photoshop.
    Download CS5 products
    However since you are using a new MAC OS you might want to check the compatibility of the products.
    As CS5 is only tested on 10.5.7 and 10.6 MAC OS.
    Refer to below link
    https://helpx.adobe.com/photoshop/system-requirements.html#main_Photoshop_CS5_system_requi rements
    Thank you for posting on Adobe Forums.

  • How can I upgrade from Photoshop Elements 12 to Photoshop Elements 13  AND Photoshop Premiere Elements 13? What would be the price?

    How can I upgrade from Photoshop Elements 12 to Photoshop Elements 13  AND Photoshop Premiere Elements 13? What would be the price?

    Hi Raymond,
    I would advise you to buy the bundle package of Premiere and Photoshop Elements 13 which cost 149 $ but due to online promotions the price right now is 119 $.
    Thank you for posting on Adobe Forums.

  • How can I use my photoshop elements 10 with windows 8 upgrade

    How can I use my photoshop elements 10 with my windows 8 uograde

    All versions of PSE except versions 1, 3, 5 & 6 will work with Windows 8.
    Microsoft Windows 8 compatibility.

  • How can I import my photoshop images onto my ipad?

    How can I import my photoshop images onto my ipad?

    Another way. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive (works the same with an SD card) into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Using The iPad Camera Connection Kit
    http://support.apple.com/kb/HT4101
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • How can I deactivate Adobe photoshop elements 9 when its un-installed?

    How can I deactivate Adobe photoshop elements 9 when its un-installed? I told my husband I had to get it off the third computer but he trying to help me did not deactivate it before he  un-installed it!!!!
    Now what? I am only using this on 2 computers and I'm told I am using it on a 3rd and I'm not.
    How can I fix this?
    It wont work on the 3rd one anyway because its so old and limited it crashes every time I try. But I need this on my 2 good computers.

    One way could be to reinstall it on the third computer and then deactivate it and uninstall it.
    If that doesn't work out or if you'd rather try this route it should work... contact Adobe Support either by chat or via phone and they should be able to help.  Chat is usually 24/7
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • How can I change Adobe Photoshop Elements 10 into English version?

    It's strange for the second download shows Franch, how to change it to English version? Thanks.

    Thanks for response.  I purchase Photoshop Elements 10 from App store, the first install is ok-in English, but my computer reset for some problem, so I installed it again. But this time, it's not English version but the other that I cannot recognize. How can I do? I forgot to save the serial number, where can I check it?
    Thanks for help. 
    Jeff A Wright 於 2012/1/8 上午5:40 寫道:
    Re: How can I change Adobe Photoshop Elements 10 into English version?
    created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion 
    The language is tied to the serial number.  Did you purchase the software directly from Adobe?
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4124186#4124186
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4124186#4124186. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • Windows Update Error code 80072ee2

    I am running Windows 7 Home Premium 64 bit and I keep getting the error code 80072ee2 Windows could not search for Updates. I know there are several other posts but none of them are helping me. I have tried the steps from microsoft but nothing worked

  • All names appear in the group mails.  They didn't before.

    I used to be able to send group mail with just the title of the group appearing in the "To" window. Now, all the names in the group have to be there or it won't go out. Sometimes I don't want the names there. iMac G5   Mac OS X (10.4.8)  

  • SQL query to get the current session info

    I've a query in my application to view the all the sessions within database select substr(a.spid,1,9) pid, substr(b.sid,1,5) sid, substr(b.serial#,1,5) ser#, substr(b.machine,1,6) box, substr(b.username,1,10) username, -- b.server, substr(b.osuser,1,

  • OBBH Substitutuions for line items.

    HI, We are trying to assign cost centers for GL accounts using FI susbstitution rules ( OBBH ) in exit routine ZGGBS000 ( RGGBS000 ). The BSEG and BKPF ( line item substitution ) values are populated when the routine is triggered however we also need

  • How to make copies of internal table with unknown structure?

    Dis is the detailed description of a problem i have and i tried all i can to solve it without satisfied results. I want to copy an internal table of a type defined in the ABAP program itself, not dictionary. I have a function that is supposed to acce