Make grid squares into dots

Hi!
I'm new quite new to PS but think it is the right tool for a job I have to do.
The general idea is to make a photo into small dots. I thought I could pixelate a photo and then make the pixels/squares into dots in different sizes. After an awful lot of clicking i wondered if anyone had a trick to do this easy.
At first I tried with this Mickey Mouse picture, but didn't end with a very nice result.
And you bet I used a heck of a lot time!
I really hope someone has a trick to do this a better way than just clicking with the pencil tool like I did.
Regards
Christoffer

Semaphoric is exactly right (great tip), but what's unsaid is that you need to set all the angles the same to get nice black dots...  And you'll need to start with a gray image rather than black so that there is some white space between the dots.
-Noel

Similar Messages

  • Filling in grid squares problems

    package view;
    import javax.swing.*;
    import model.CellModel;
    public class Grid
              public void buildGrid(){
              GridPanel gridPanel = new GridPanel();
              JFrame f = new JFrame();
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.getContentPane().add(gridPanel);
              f.setSize(400,400);
              f.setLocation(200,200);
              f.setVisible(true);
         //update() Redraw the GUI
         public void update(){
              gridPanel.repaint();
         public static void main(String[] args)
              Grid g = new Grid();
              g.buildGrid();
              GridPanel g2 = new GridPanel();
              model.CellModel c = new model.CellModel(g2);
              c.divide();
    class GridPanel extends JPanel
        double xInc, yInc;
        final int
            GRID_SIZE = 4,
            DRAW      = 0,
            FILL      = 1,
            PAD       = 20;
        int[][] cells;
        public GridPanel()
            initCells();
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            double w = getWidth();
            double h = getHeight();
            xInc = (w - 2*PAD)/GRID_SIZE;
            yInc = (h - 2*PAD)/GRID_SIZE;
            // row lines
            double x1 = PAD, y1 = PAD, x2 = w - PAD, y2 = h - PAD;
            for(int j = 0; j <= GRID_SIZE; j++)
                g2.draw(new Line2D.Double(x1, y1, x2, y1));
                y1 += yInc;
            // col lines
            y1 = PAD;
            for(int j = 0; j <= GRID_SIZE; j++)
                g2.draw(new Line2D.Double(x1, y1, x1, y2));
                x1 += xInc;
            // fill cells
            g2.setPaint(Color.red);
            for(int row = 0; row < cells.length; row++)
                for(int col = 0; col < cells[0].length; col++)
                    if(cells[row][col] == FILL)
                        x1 = PAD + col * xInc + 1;
                        y1 = PAD + row * yInc + 1;
                        g2.fill(new Rectangle2D.Double(x1, y1, xInc - 1, yInc - 1));
        public void toggleCell(int row, int col)
            int mode = DRAW;
            if(cells[row][col] == DRAW)
                mode = FILL;
            cells[row][col] = mode;
            repaint();
        private void initCells()
            cells = new int[GRID_SIZE][GRID_SIZE];
            for(int row = 0; row < cells.length; row++)
                for(int col = 0; col < cells[0].length; col++)
                    cells[row][col] = DRAW;
                  setUpCells();
    public void setUpCells() {
       for (int k = 0; k < 20; k++) {
       Random rand = new model.Random(0, 9);
        x = rand.next();
        y = rand.next();
       // if cell is switched to off turn it on          
        if(getStatus(x,y) != 1) {
        toggleCell(x,y);
        else k++;
    }the above code draws the grid fine and iniates randomly 20 cells to on - red.
    The problem occurs when I call the toggleCell method from other classes, grid squares are signalled to be on but they are not being painted.
    package model;
    import model.Cells;
    import view.GridPanel;
    public class CellModel {
         private Cells cells;
         private GridPanel g;
         int[][] location;
         int x,y ;
         String strX,strY;
    public CellModel(GridPanel grid){
              g = grid;
                                               g.toggleCell(1, 1);
              g.toggleCell(0, 0);
              System.out.println(g.getStatus(0,0));
              cells = new Cells();
         }the above should turn on grid squares (1,1) and (0,0) when the cellmodel is iniated, although when i retreive the status the status of the squares is to on but they are not painting, can anyone help clear this up?

    Maybe it's because you have a variable or ORA_CRS_HOME CRS_HOME, see this portion of the code:
    # Make sure CRS_HOME is set
    if ( exists( $ENV{"ORA_CRS_HOME"} ) ) {
        $CRS_HOME = $ENV{"ORA_CRS_HOME"};
    $CRS_HOME_BIN    = $CRS_HOME;
    If it was not, do the following to the node of clusterware:
    1. Kill all processes sap, use the command:
    ps-ef | grep-i sap | awk-F "" {'print $ 2'} | xargs kill -9
    2. Delete files sockets. Sap / tmp
    rm / tmp / * .sap
    3. Start sapctl with the command:
    $ Su - qrcadm
    # su
    # Sapctl start all-sapsid QRC
    I have a publication of the implementation of sapctl on my homepage.
    However, this Ligua written in Portuguese, any questions, please contact me.

  • Trying to make a square class

    hi i am trying to write a class that creates a square but it has to use to use the rectangle package so far i get an error cannot not find symbol on this line square = new Rectangle(0,0); and i get errors when i return my x and y variables if anyone has any ideas please i need some help thank you
    import java.awt.Rectangle;
    public class square
         private int length;
      private int width;
         public square ()
              square   = new Rectangle(0,0);
         public square (int length, int width)
             square = new Rectangle(0,0,length, width);
             this.length = length;
              this.width = width;
          /*Constructor:*/
        public square(int x, int y, int length, int width)
              square = new Rectangle(x, y, width, length);
                 this.length = length;
             this.width = width;
      public int getLength()
        return length;
      public int getWidth()
        return width;
      public int getX()
           return x;
      public int getY()
           return y;
      public void setBounds()
      return side;
    }

    You realize that by definition a square has equal sides? You don't need a width or a height, you just need a length. My "Square" class would only have a getLength() method and possibly setLength() if you want it to be mutable. If this is intended for use with AWT you could subclass Rectangle and guarantee that all sides are equal. Given your current design it would be trivially easy for me to create a Square that is in fact not a square at all.
    public class Square {
        private Rectangle rect;
        public Square(int x, int y, int length) {
            super();
            rect = new Rectangle(x, y, length, length);
        public Rectangle getRectangle() {
            return rect;
    }Of course, they could easily modify that Rectangle to make it not be a Square anymore. You could change the code to make a defensive copy. Then they could change the Rectangle, but it wouldn't affect you, so your Square would always return a square even if they made the returned Rectangle not a square at some later point. You'd do that like so:
      * Returns a square rectangle.  The returned Rectangle is mutable
      * and as such it could be mutated to no longer be a square.  It is the
      * responsibility of the client to ensure this does not happen.  Each
      * returned Rectangle is unique and mutations in one will not affect
      * the others.
      * @return A Rectangle that is a perfect square.
    public Rectangle getRectangle() {
        return new Rectangle(rect);
    }You could subclass Rectangle, but it's internals are exposed so you couldn't ever guarantee your Square was a square. Alternatively it looks like you could subclass Rectangle2D or RectangularShape and just be sure to override anything that could mutate your Square into something not a square. Also, you could just implement the Shape interface if that suits your purposes.
    Just some things to think about.

  • I guess there are not phone support...  I cannot drag images from grid view into collections.

    I have been trying desperately to fix this issue.  I cannot drag any images from the grid view into collections.  Can anyone help?  I looked everywhere for a  customer support number but I was not able to find one on Adobe Website. 

    Hi,
    Only a couple of things I can think of:
    1. Make sure it isn't a Smart Collection, and
    2. Drag by placing the cursor on the actual picture NOT the grey area surrounding the image.

  • Facing problem while downloading ALV grid Output into Excel

    Hi Guys,
    I am facing problem while downloading ALV grid Output into Excel.
    It is downloading into excel, but all character columns first and next all quantity columns it is displaying. But I need columns order as it is in the grid.
    If I take all columns as characters it works fine. But it will be problem for calculating total, subtotals of quantity columns
    Can someone help me regarding this
    thanks for your help

    Hi,
    Open up Excel on your desktop. Goto Tools > Macro > Security.
    Make sure that your security is set to Medium (or less). SAP uses OLE automation to run the Excel instance and in Office 2003 (for example), Microsoft has increased their default security setting to High. With the High setting, the output to Excel fails.
    Was this your problem? Don't forget those points, either.
    check with this wetther it is solved or not.
    Regards,
    sana.

  • I sometimes have blue and red square-shaped dots appear on my MBP; especially but not exclusively when I'm watching videos.  The dots don't stay in the same place; and also they are not there all the time.

    I sometimes have blue and red square-shaped dots appear on my MBP; especially but not exclusively when I'm watching videos.  The dots don't stay in the same place; and also they are not there all the time.  Also, sometimes my animations (applications opening, windows being dragged, etc.) will glitch as well.  Again, this is not a continual thing; it just happens variously throughout my day.  MBP Model A1212, OS X 10.6.8, 2.33 Ghz 3GB RAM.

    Did the original songs that do not appear on the car player play in the Music app on the iPod? Sometimes glitches happen and they do not. Also, If y ohave a 5G iPod/iOS 7, purchase songs  will show with an cloud icon by them if they are not downloaded if Shall All is turned on in Settings>iTunes and App Store

  • How to make a photo into a single or 2 colored stamp/vector type image

    I'm fairly new to photoshop and have seen designs like the few I've posted below and I want to know how I can make my pictures into items like those. I tired doing a search but I'm not even sure what this type of image & techinque is called, so the search ended in failure. I have the newest edition of photoshop as well as photoshop, photoshop elements and corel painter essentials. Any help is greatly appreciated!!

    Dayana
    Please excuse if I go over some things that you aleady know, but again I do not want to take anything for granted that would prevent us from moving forward on your project.
    When you wrote
    When I go to Blu-Ray on the Status it says No Burners detected, and with AVCHD it says Busy.
    1. Does your burn dialog have a field named burner location:? If so, does your Blu-ray burner show up as a choice in its drop down list?
    2. And, with that "...with AVCHD it says Busy", have you selected Publish+Share/Disc/AVCHD disc and inserted a Blu-ray disc instead of a DVD disc, when you get the Busy message? The choice of Blu-ray is a Blu-ray disc; the choice for AVCHD is only a DVD disc. So, please clarify that point.
    3. Have you tried Publish+Share/Disc/AVCHD disc with a DVD double layer single sided disc?
    4. As a note..the maximum bitrate for burn to DVD-VIDEO on DVD disc 4.7 GB/120 minutes and 8.5 GB/240 minutes is the same, that is 8.00 Mbps. Whereas, the maximum bitrate is much higher for the AVCHD burn to DVD disc and the Blu-ray burn to Blu-ray disc (about 15.74 to 15.50 Mbps for AVCHD DVD, and about 20.19 to 24.0 Mbps for Blu-ray disc format on Blu-ray disc. More details on the exact values if needed.
    What is the bitrate of the AVCHD file that you have imported to the Timeline? See if you agree...if the source has a higher bitrate than the export bitrate, would not you expect smaller file size for the export? And if the source has a lower bitrate than the export bitrate, would not you expect a larger file size for export?
    Do some mini tests runs to prove or disprove that. Look at the Space Required and Bitrate reading in the burn dialog when you have a given disc in the burner tray.
    Please review.
    Thanks.
    ATR
    Add On...
    Do you have the equipment that will play back AVCHD DVD as well as Blu-ray disc format on Blu-ray disc?

  • Why is the map not displaying correctly on "find my phone"  I am getting large grid squares on the map

    why is the map not displaying correctly on "find my phone"  on my computer.  I am getting large grid squares on the map.  I have tried deleting my history, tried zooming in & out, but the grid squares won't go away..

    Welcome to Apple Support Communities
    It means that it is not connected to the Internet, so it may be turned off. Another option would be that somebody has resetted it to default settings and has changed the Apple ID, being impossible to track your son's iPhone. Anyway, report it to the police because it is the only thing you can do at the moment

  • Recently my contact card was changed to make my name into a vulgar statement.

    Recently my contact card was changed to make my name into a vulgar statement. I only noticed this when I went to go send an email, and the incorrect name popped up. There is a SLIM chance someone hacked into my contacts since everything is password protected, but I guess I need to know if there is any way that a virus/hacker went into my contacts to mess with me. That seems unlikely as it was just my contact that was changed, but I still need to know. I recently updated my computer software to mountain lion, and I also updated software on my iphone. I was wondering if any of that might have made that change?

    Your device was not hacked as it is not possible unless the device is jailbroken.
    More likely someone has gained access to your iCloud account (assuming that is how contacts are synced to your device) and changed the information to mess with you.  This could also have been done with physcial access to the device or even access to the computer if it is set to save passwords.

  • Hi! I have a Creative suite Design Standard 9 Adobe program and I am attempting to make a wizzard form that can be made into an entry form for a competition. So I need to 1. Make the form into a question and answer form that Participants may fill out. 2.

    Hi! I have a Creative suite Design Standard 9 Adobe program and I am attempting to make a wizzard form that can be made into an entry form for a competition. So I need to 1. Make the form into a question and answer form that Participants may fill out. 2. make it possible for them to download it via a link on our website 3. make it possible for them to save the info they have written into the form and mail it to the mail we have supplied in the entry form and 4. make it possible for them to put in a jpg. as part of the entry for and lastly 5. make it possible for us to copy paste the document and use it on other platforms. How do I do this - is it at all possible with adobe?

    Those requirements are go way beyond what PDF forms can do and are meant for, some of them would require involving other programs or are mutually exclusive and contradictory. You are wasting your time even thinking about doing this as an "offline" PDF form. Simply sign up for an online forms/ survey service like FormsCentral or Surveymonkey.
    Mylenium

  • Possible to make a guide into a mask or selection?

    Is this possible? I want to use a guide made from an object, as a cookie cutter for an image that I've placed under it. thanks!

    Thanks,
    This actually worked to crop the OUTSIDE of my circle, but for some reason the hole in the middle of this circle was never masked
    When working with more than one guide/ path, I keep bumping into a few rules.
    I think if I can get this, I'll start to understand how to separate my layers better.
    "The selection cannot contain objects within different groups unless the entire group is selected."
    I get this message even when I select "entire groups"
    "Can't make the selection into guides. Guides cannot be created or released within the selected object types."
    Well, I wasn't trying to create guide, actually. (lol)
    So my real question is, where can I find an advanced tutorial that focuses specifically on layer order/simplification, as opposed to just creating some nice Illustrator image?
    I seem to be inadvertently creating a surplus of extra paths and layers and groups that I don't even need, (i can prove it by throwing them out) lol!

  • How can I make picture fit into screen

    There's a picture on the Internet that I want to print, but it's slightly too tall to fit into my screen. I've tried changing the resolution. I've also gone to Apple>System Preferences>Displays>Geometry, but nothing there does the job. If I could rotate the image 90 degrees, I believe I could get the ENTIRE image on my screen, but the Rotate button only makes the picture tilt slightly. The Height adjustment doesn't help, either.
    Is there a way to rotate the picture 90 degrees, or is there any other way get the picture to fit into my screen? Yes, I've also dragged (stretched-out) the picture as far as I could.

    There's a picture on the Internet that I want to
    print, but it's slightly too tall to fit into my
    screen...
    The answer to your question depends a several things.
    Changing the screen resolution or "geometry" does
    not change how something is printed. So is your
    question the right question. Are you trying to make
    it "fit into your screen"? Or are you trying to
    make it print on a single sheet of paper?
    NOTE: If the goal is to fit it on the screen, there
    are many ways you can do that. Maybe the easiest is
    to select Print in whatever program you are using to
    see the image. In the Print dialog window, click the
    Save as PDF... button. This will allow you to save
    the page printout as a PDF file. Double-clicking on
    the file should open it in Preview app. In Preview,
    you can adjust the "magnification" to make it all fit
    on your screen.
    Thanks for the almost instantaneous reply. I've copied it because it contains useful information that I might need in the future; for now, however, I somehow managed to stumble into a solution while waiting for a reply. Oh, now I realize where I had gone wrong, and why I was finally succesful. At first, I tried to copy the screen by using the COMMANDSHIFT4. And, as you know, when using this system, you can only print what is on the screen. Later, well, I'm already a little fuzzy on what I did, but I didn't use the "Screen Capture" method. Thanks, again.

  • Make a pic into a button

    I am new to flash. I want to make a picture into a button to
    link to a URL. How do I do this? please remember I am new so please
    baby steps. I would've tried F1 but it just doesn't open.

    Ok open flash. Select rectangle tool. Draw out a button at
    the normal size you want it. Then select the free transform tool.
    Select the button you drew. In the center of the button should be a
    circle. Drag this circle to the left edge of the button. You should
    only move it horizontally across so that its still in the center
    but on the left edge. Now select the black arrow again. Select the
    button again and right click it to convert to symbol. name it
    whatever you want. For this example I named it box. Make sure Movie
    Clip is selected. (I'll explain in a minute). Also, make sure the
    registration point is the left center edge. Just like when you
    selected the free transform tool. Click Ok. Now for the
    explaination. You want to always use Movie Clips instead of button.
    Well not always but most of the time. Because movie clips can be
    used for more than just buttons. I won't get too detailed but when
    this tutorial is finished you will see you can make a movieclip
    respond like a button.
    Now back to work! :)
    Now select box and go to properties and give instance name
    box.
    Insert layer. Open actions panel and insert the following
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    box.onRollOver = function() {
    var tw:Tween = new
    Tween(this,"_xscale",mx.transitions.easing.Elastic.easeOut,100,300,3,true);
    box.onRollOut = function() {
    var tw:Tween = new
    Tween(this,"_xscale",mx.transitions.easing.Elastic.easeOut,300,100,3,true);
    Now test your movie
    you can go to help and find out more about the transition
    tween classes. You can replace "Elastic" with "Strong" for a
    different effect. There are others you can use also. Like I
    mentioned before just look up transition manager or tween classes
    to view other options. You can have a lot of fun with actionscript.
    I view it as jedi powers. The more you learn the better you
    become.

  • HT2513 How do i export iCal to make it import into microsoft outlook

    How do I export iCal and make it import into Microsoft Outlook?

    How depressing.   No responses?  Did you ever solve this problem?  I have it too.

  • Add Array grid  report into Layout/tab ExtJS?

    How to add Array grid report into Layout/tab ExtJS?
    Array grid examples are from >
    http://apex.oracle.com/pls/apex/f?p=43040:4:467728553403435
    js>
    Ext.onReady(function(){
    4
    5var munkyData = [
    6
    7["7369","SMITH","CLERK","7902","17-DEC-80","800"," ","20"]
    8,["7499","ALLEN","SALESMAN","7698","20-FEB-81","1600","300","30"]
    9
    10,["7521","WARD","SALESMAN","7698","22-FEB-81","1250","500","30"]
    11
    12,["7566","JONES","MANAGER","7839","02-APR-81","2975"," ","20"]
    13
    14,["7654","MARTIN","SALESMAN","7698","28-SEP-81","1250","1400","30"]
    15
    16,["7698","BLAKE","MANAGER","7839","01-MAY-81","2850"," ","30"]
    17
    18,["7782","CLARK","MANAGER","7839","09-JUN-81","2450"," ","10"]
    19
    20,["7788","SCOTT","ANALYST","7566","09-DEC-82","3000"," ","20"]
    21
    22,["7839","KING","PRESIDENT"," ","17-NOV-81","5000"," ","10"]
    23
    24,["7844","TURNER","SALESMAN","7698","08-SEP-81","1500","0","30"]
    25
    26,["7876","ADAMS","CLERK","7788","12-JAN-83","1100"," ","20"]
    27
    28,["7900","JAMES","CLERK","7698","03-DEC-81","950"," ","30"]
    29
    30,["7902","FORD","ANALYST","7566","03-DEC-81","3000"," ","20"]
    31
    32,["7934","MILLER","CLERK","7782","23-JAN-82","1300"," ","10"]
    33
    34];
    35
    36var store = new Ext.data.SimpleStore({
    37 el: store,
    38 fields: [
    39 {name: 'empno', mapping: '0'},
    40 {name: 'ename', mapping: '1'},
    41 {name: 'job', mapping: '2'},
    42 {name: 'mgr', mapping: '3'},
    43 {name: 'hiredate', mapping: '4'},
    44 {name: 'sal', mapping: '5'},
    45 {name: 'comm', mapping: '6'},
    46 {name: 'deptno', mapping: '7'}
    47 ]
    48 });
    49
    50store.loadData(munkyData);
    51
    52var grid = new Ext.grid.GridPanel({
    53 el: grid,
    54 store: store,
    55 columns: [
    56 {id:'empno',header: "Employee",sortable:true, width:100,dataIndex:'empno'},
    57 {header: "Name", sortable:true,width:75, dataIndex:'ename'},
    58 {header: "Job", sortable:true, dataIndex:'job'},
    59 {header: "Manager", sortable:true,width:75, dataIndex:'mgr'},
    60 {header: "Hire Date", sortable:true,dataIndex:'hiredate'},
    61 {header: "Salary", sortable:true,width:50,dataIndex:'sal'},
    62 {header: "Commission", sortable:true,dataIndex:'comm'},
    63 {header: "Department", dataIndex:'deptno'}
    64 ],
    65 stripeRows: true,
    66 width:700,
    67 autoHeight:true,
    68 title:'Array Grid'
    69 , renderTo: 'munkyDiv'
    70 });
    71});
    any references?
    regards
    Gordan

    Hi Mark,
    thanks for reply, I was making example on
    http://apex.oracle.com/pls/otn/f?p=43048:22:2659745156195172
    using debug grid layout and put into REGION_05
    ...< div id = "munkyDiv" > #REGION_POSITION_O5# < / div>
    in this way I can add 1,2,3 or more reports as tab and grid.
    Simple example as first step is basic layout (integration ExtJS and Apex)>
    http://apex.oracle.com/pls/otn/f?p=43048:15
    username/pass EXTJS/EXTJS
    regards
    Gordan
    Edited by: useruseruser on Aug 8, 2010 2:51 PM
    Edited by: useruseruser on Aug 8, 2010 2:52 PM

Maybe you are looking for

  • SAP SM59 Connection - Program Not Registered

    I created the SM59 in the SAP system and did the basic install using the BO Integration Kit XI release 2 on a Windows system. On the test using the SM59 I am getting: ERROR: program AERSND02_BO_SB2 not registered. AERSND02_BO_SB2 is the program ID I

  • Text Wrap disables vertical justification

    Hi, I am using InDesign CS3 5.0.4 on Windows XP Pro SP3. I have the following problem: I have a text frame with vertical centrered text in it. Now when I put some object with text wrap near it, the vertical justification is just ignored (also blanked

  • PS web photo gallery?

    I created a web gallery in PS2. After I post to my web site, the window is 800x600 and the vertical photos need to be scrolled. There is lots of gray around the photos. How do I expand the web gallery to fill screens better. Maybe 1024x768.

  • JSP's include embedded in a String ???

    Hi All, I'am building an HTML string, which includes a JSP file as, "<%@ include file=\"../jsp/SST_Links.jsp\" %>" When the JSP is converted to a servlet the above line becomes, "<%@ include file=\"../jsp/SST_Links.jsp\" which means, the rest of the

  • Macbook pro freezes and sound loops

    Hello everyone, My mbp, which I bought last summer, has been having freezing issues in Windows. These freezes seem to happen at random, but predominantly when I am playing games. The screen would stop where it froze (everything would be still), and t