PlanerImage .getAsBufferedImage( Rectangle, ColorModel )

Hi,
If I use JAI to get a PlanerImage for a file on Disk, then want to get a BufferedImage for a sub section of that Image, I use the following:
FileSeekableStream stream = stream = new FileSeekableStream( "FILENAME" );
ParameterBlock params = new ParameterBlock();
params.add( stream );
RenderedOp img = JAI.create( format, params );
BufferedImage bi = img.getAsBufferedImage( 
new Rectangle( (int) vr.getMinX(), (int) vr.getMinY(),
(int) vr.getWidth(), (int) vr.getHeight() ), cm );
//Later on
g.drawImage( bi, x, y, w, h, null ); 
//Throws exceptions !Now, the cm (ColorModel) Variable seems to be the issue:
If I use ColorModel cm = ColorModel.getRGBdefault(); I get the folloing error on render.
java.lang.IllegalArgumentException: The supplied ColorModel is not compatible with this image`s SampleModel.
However, If I use null for the ColorModel, I get the following error:
java.awt.image.ImagingOpException: Unable to transform src image
at java.awt.image.AffineTransformOp.filter(AffineTransformOp.java:263)
Does anyone have any suggestions ??
I'm really stumped on a critical product point.
Cheers,
Ronan

Bump.

Similar Messages

  • Applying a stroke color to a rectangle

    Hi All,
    I want to apply "Red", "Yellow", "Green" one at a time as a stroke color to the rectangle
    On looking into the pageitem property I have found that I can do the above thing as follows
    selectedPageItem.strokeColor = MyColor
    But the above proprty needs a swatch type variable.
    To handle this I tried following.
    // I added a red color on swatch panel
    activeDoc.colors.add("R=100 G=0 B=0");
    then tried to set stroke color as follows
    selectedObjects[0].strokeColor = activeDoc.swatches.item("R=100 G=0 B=0");
    But above statement throws an exception.
    If anybody have done this then please let me help to achieve this
    Thanks
    Alam

    Thanks for your reply
    I am able to got the solution
    It can be achhieve as follows
    var myColor = activeDoc.colors.add();
    myColor.model = ColorModel.PROCESS;
    myColor.space = ColorSpace.RGB;
    myColor.colorValue = [255,0,0];
    myColor.name = "myTestColor";
    selectedObjects[0].strokeColor = myColor;
    Thanks,
    Alam

  • After migrating data from Time Machine, some of my photos are not showing up in iPhoto. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see my photos

    After migrating data from Time Machine, some of my photos are not showing up in iPhoto LIbrary view. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see all  my photos in 'Library' view, and I can't figure out how these photos seem to be arbitrarily hidden. Help, please.

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

  • Photoshop CC: When I'm trying to draw a rectangle I can't fill it or create a stoke because there is a message telling me; "Could not complete your request because of a program error. What can I do?

    Photoshop CC: When I'm trying to draw a rectangle I can't fill it or create a stoke because there is a message telling me; "Could not complete your request because of a program error. What can I do?

    It is a mute point now. PSE12 finally failed to the point it locked up the MAC. I had to restore the MAC OS from backup to a point before the PSE12 update.
    The MAC now operates correctly and so does PSE12. I don't think I'll be updating PSE any time soon.

  • Hello, i restored and updated my iphone 4 to the latest version of 5.1.1 and after that when i connect my mobile to i tunes all i see is a big rectangle and a apple logo on left and a small lock on right side please help me fix this problem.

    hello,
    i restored and updated my iphone 4 to the latest version of 5.1.1 and after that when i connect my mobile to i tunes all i see is a big rectangle and a apple logo on left and a small lock on right side please help me fix this problem.

    I sloved this issue by resting my phone from settings>general>reset>reset all settings...the problem will be fixed

  • How to pop up "Drag New signature rectangle" window from plug-in?

    Hi, everybody
           I am trying to create a menu that contains menuitem "sign". when the  user click on menu->"sign" a  window  pop-up
           asking for "Drag New signature rectangle" from the user.This window is same as poped up by default by digSig.
           Problem is Which API should be used to pop this window.
           Any kind of help will be welcomed.
                                                                                                                        Thanks and Regard

    Thanks soooooooooooooooooooooooooooooooooooooooo much!!!!!!!!!!!!!!!!!!!!!!!!! This is EXACTLY what I want to do!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! wuwuwuwuwuuwuwuw....................want to cry~~~~~~~~~~~~~~~~~thanks thanks~~~~~~~~~~~~~~~~~~~~~``

  • I have all my photos both in the photo library by date and as events . When I open I-photo in either format there are just empty rectangles with names. If I click the photo appears. This was not like this before. How can I get it back so that I can see th

    I have all my photos organized in i-photo as both photos and events. When I opened in the past the images in each event or album appeared as icons on the sreen. Now when I open I only get a dotted line rectangle and only if I click I see the picture, which is really problematic when trying to see or select nay image.
    I don't know if mistakenly I did something with the settings although I couls not find anything in preferences or any of the menus that could relate to this.

    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto thumbnails - this may take several tries
    Also what version of iPhoto? What recently changed?
    LN

  • Check if a point lies inside a rectangle

    Hi im making an application that displays a shape on the screen at different locations. The shape is a combination of an ellipse and a line. My problem is when i want to draw the shapes i created a method to check if the point given is contained by any other shape and if it is it should create a new point. However when the .contains(Point) method is run it doesnt reply true or false so my code just goes into an infinite loop and crashes.
    Here is the checkpoint method that loops infintly
    private void setPoint(Point pow) {
              boolean anythingthere = false;
              while (anythingthere==!true) {
                   Rectangle test = list.getBounds();
                   if (test.contains(pow)) {
                        int f = pow.x;
                        f = f+200;
                        int g = pow.y;
                        pow.setLocation(f, g);
                        System.out.println(pow);
                        f = 0;
                   else {
                        if (pow.x+150 > getWidth()) {
                             pow.setLocation(50, pow.y+180);
                        anythingthere = true;
                        i++;
         }And because my shape is a combination of graphics2D shapes i created this method in its class to return the rectangle that bounds the shapepublic Rectangle getBounds() {
         bound = new Rectangle(location.x,location.y,size,size);
         return bound;
    }Thanks for any help you can give im really stumped!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi thanks for your reply's. Thanks for tips on making my code nicer and efficient ive tried to do it throughout my project so hopefully its more readable now. The problem was to do with scope like one of you said so i moved a few things round and got it working. The problem was when i called the bounds of the rectangle it was returning the bounds using the last changed point which meant that every time i tested the loop the point was inside that bound so it basically looped infinitely. One line moved and it worked perfectly.
    Thanks everyone

  • How to access a placed PDF inside a rectangle and move it around

    Hi, I have the following code which places a PDF inside a rectangle var f = new File("C:/pdf.pdf");    var doc = app.activeDocument;  var thepdf =doc.pages[0].rectangles[0].place(f, false);  doc.pages[0].rectangles[0].fit(FitOptions.FILL_PROPORTIONALLY);  Now I want to move "thepdf" (which is of object type PDF) but I can only find a way to move the rectangle around it. I need to move the inner rectangle (the PDF), like I would do with the Direct selection tool. is this possible?

    Yes. That's possible.
    The PDF placed inside the rectangle is the graphics[0] object of the rectangle.
    Or, if you look it up in the links collection, the parent of that link. The parent of that parent is the container object, the rectangle.
    myRectangle.graphics[0].move(/*insert your arguments here*/)
    Would move the PDF inside. Where the move() method could have different arguments:
    Adobe InDesign CS6 (8.0) Object Model JS: Graphic
    Uwe

  • Drawing lines, rectangles and circles as objects onto a JPanel.

    Hi. I have to complete a task in school. The work is to create some simple 2D graphical editor. I'm new to java and I have some problems with this job, so I'm looking for help where it is possible...
    I created a JFrame and using it as a window. Into this JFrame I've added a toolbox (JToolBox) and "drawpad" - a JPanel. The toolbox wasn't any problem, but I aim to use the JPanel for drawing 2D objects. I tought about creating some container of objects, where I could put lines, rectangles or circles, each one with its properties (color, [x; y] coordinates on the scene, filling and drawing width) and then, draw this scene onto the JPanel.
    It should be something like windows Paintbrush. Can be simplier, but including the possibility to move and change properties of drawn objects.

    Well, there are two approaches to this that come to mind:
    1. Create an image. If this program is supposed to be like Windows Paint, the tools you are describing are only there for the sake of modifying a two dimensional image. In that case, I would recommend using a BufferedImage.
    The JPanel can contain a single JLabel. The JLabel is constructed in the following fashion:
    JLabel image_label = new JLabel(new ImageIcon(bufferedImage));...where bufferedImage is the image on which you will be storing the data. You can use bufferedImage.getGraphics() to get an object which will quite happily draw geometric shapes for you. Then, after each draw, you tell the panel to repaint itself.
    2. Store the shapes and create a component to draw them for you. You'd create a new JComponent class that would accept objects representing geometric shapes. You then override the paintComponent method on this new class to have it render itself according to the contents of the geometry objects. It would also probably be advisable to have all of these classes implement a common interface (which you would also create) so the rendering component could treat them identically.

  • Need help to drag a rectangle to define a zoom level

    Can some help me figure this out. I am trying to draw some graphics on a JPanel, then drag a rectangle to define a new zoom extent. I am having problems understanding how to do this with the AffineTransform. If you run the following code, you will see what I am trying to do....
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.Shape;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JToolBar;
    public class TestCase extends JPanel implements MouseListener, MouseMotionListener {
      private Integer _startX = 0; // start x for dragging of rectangle
      private Integer _startY = 0; // start y for dragging of rectangle
      private Integer _lastX = 0; // end x for dragging of rectangle
      private Integer _lastY = 0; // end y for dragging of rectangle
      private boolean _isDragging = false;
      private Rectangle _rect = new Rectangle();
      private Rectangle[] _rects = null;
      private Color[] _colors = null;
      protected BufferedImage _imageBuffer = null;
      protected AffineTransform _xform = null;
      public TestCase() {
        _xform = new AffineTransform();
        _rects = new Rectangle[6];
        _rects[0] = new Rectangle(0, 0, 100, 100);
        _rects[1] = new Rectangle(100, 100, 100, 100);
        _rects[2] = new Rectangle(200, 200, 100, 100);
        _rects[3] = new Rectangle(300, 300, 100, 100);
        _rects[4] = new Rectangle(200, 0, 50, 50);
        _rects[5] = new Rectangle(250, 50, 50, 50);
        _colors = new Color[6];
        _colors[0] = Color.RED;
        _colors[1] = Color.WHITE;
        _colors[2] = Color.BLUE;
        _colors[3] = Color.GREEN;
        _colors[4] = Color.YELLOW;
        _colors[5] = Color.CYAN;
        setBackground(Color.LIGHT_GRAY);
        addMouseListener(this);
        addMouseMotionListener(this);
      // The next three methods enable user to drag a retangle
      // First, set the start points of the rectangle
      public void mousePressed(MouseEvent e) {
        _startX = new Integer(e.getX());
        _startY = new Integer(e.getY());
        _lastX = new Integer(e.getX());
        _lastY = new Integer(e.getY());
        _isDragging = true;
      // Second, drag the rectangle
      public void mouseDragged(MouseEvent e) {
        _lastX = new Integer(e.getX());
        _lastY = new Integer(e.getY());
        repaint();
      // Third, complete the rectangle, then zoom
      public void mouseReleased(MouseEvent event) {
        _lastX = new Integer(event.getX());
        _lastY = new Integer(event.getY());
        _lastX = new Integer(event.getX());
        _lastY = new Integer(event.getY());
        Rectangle rect = new Rectangle(_startX, _startY, _lastX - _startX, _lastY - _startY);
        Double widPanel = new Integer(this.getWidth()).doubleValue() / _xform.getScaleX();
        Double hgtPanel = new Integer(getHeight()).doubleValue() / _xform.getScaleY();
        Double widRect = rect.getWidth();
        Double hgtRect = rect.getHeight();
        Double scalex = widPanel.doubleValue() / widRect;
        Double scaley = hgtPanel.doubleValue() / hgtRect;
        Double translatex = _startX.doubleValue() * scalex;
        Double translatey = _startY.doubleValue() * scaley;
        _xform.setToScale(scalex, scaley);
        _xform.setToTranslation(translatex, translatey);
        _isDragging = false;
        repaint();
      protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        Graphics2D g2 = (Graphics2D) g;
        if(_isDragging){
          g2.drawImage(_imageBuffer, 0, 0, this);
          g2.setPaint(Color.RED);
          g2.drawRect(_startX, _startY, _lastX - _startX, _lastY - _startY);
        else{
          paintPanel(g2);
      protected void paintPanel(Graphics2D g) {
        Double width = this.getSize().getWidth();
        Double height = this.getSize().getHeight();
        Dimension size = this.getSize();
        _imageBuffer = new BufferedImage(Math.round(width.floatValue()), Math.round(height.floatValue()), BufferedImage.TYPE_INT_RGB);
        Graphics2D graphics = (Graphics2D) _imageBuffer.getGraphics();
        graphics.setColor(Color.LIGHT_GRAY);
        graphics.fillRect(0, 0, this.getWidth(), this.getHeight());
        for(int i = 0; i <= _rects.length - 1; i++){
          Rectangle rect = _rects;
    Shape shape = _xform.createTransformedShape(rect);
    graphics.setColor(_colors[i]);
    graphics.fill(shape);
    g.drawImage(_imageBuffer, 0, 0, this);
    protected void zoomToExtent() {
    _xform.setToIdentity();
    repaint();
    public void mouseClicked(MouseEvent event) {
    public void mouseEntered(MouseEvent event) {
    public void mouseExited(MouseEvent event) {
    public void mouseMoved(MouseEvent event) {
    public static void main(String[] args) {
    final TestCase test = new TestCase();
    JButton btnFullExtent = new JButton("Reset");
    btnFullExtent.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent event) {
    test.zoomToExtent();
    JToolBar toolBar = new JToolBar();
    toolBar.add(btnFullExtent);
    final JFrame f = new JFrame();
    f.getContentPane().setLayout(new BorderLayout());
    f.getContentPane().add(toolBar, BorderLayout.NORTH);
    f.getContentPane().add(new TestCase(), BorderLayout.CENTER);
    f.setSize(600, 400);
    f.setVisible(true);

    I modified you code a little bit, just so I could improve my understanding. I tried to swap out the class level scale and translate variables, with an AffineTransform object, but wasn't able to get it working? Do you know why this won't work?
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.Shape;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import java.awt.geom.Rectangle2D;
    import java.util.Random;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JToolBar;
    public class TestCase extends JPanel implements MouseListener, MouseMotionListener {
      private Point start;
      private Point end;
      private boolean dragging = false;
      private double zoom_x = 1.0;
      private double zoom_y = 1.0;
      private double translateX;
      private double translateY;
      private Rectangle[] _rects = null;
      private Color[] _colors = null;
      public TestCase() {
        setBackground(Color.LIGHT_GRAY);
        _rects = new Rectangle[6];
        _rects[0] = new Rectangle(0, 0, 100, 100);
        _rects[1] = new Rectangle(100, 100, 100, 100);
        _rects[2] = new Rectangle(200, 200, 100, 100);
        _rects[3] = new Rectangle(300, 300, 100, 100);
        _rects[4] = new Rectangle(200, 0, 50, 50);
        _rects[5] = new Rectangle(250, 50, 50, 50);
        _colors = new Color[6];
        _colors[0] = Color.RED;
        _colors[1] = Color.WHITE;
        _colors[2] = Color.BLUE;
        _colors[3] = Color.GREEN;
        _colors[4] = Color.YELLOW;
        _colors[5] = Color.CYAN;
        addMouseListener(this);
        addMouseMotionListener(this);
      public void mousePressed(MouseEvent e) {
        start = e.getPoint();
        dragging = true;
      public void mouseDragged(MouseEvent e) {
        end = e.getPoint();
        repaint();
      public void mouseReleased(MouseEvent e) {
        end = e.getPoint();
        double visibleWidth = getWidth();
        double visibleHeight = getHeight();
        double selectedWidth = Math.abs(end.getX() - start.getX());
        double selectedHeight = Math.abs(end.getY() - start.getY());
        double zoomFactorX = visibleWidth / selectedWidth;
        double zoomFactorY = visibleHeight / selectedHeight;
        translateX -= start.x / zoom_x;
        translateY -= start.y / zoom_y;
        zoom_x *= zoomFactorX;
        zoom_y *= zoomFactorY;
        dragging = false;
        repaint();
      protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        Graphics2D g2 = (Graphics2D) g;
        paintShapes((Graphics2D) g2.create());
        if(dragging){
          g2.setPaint(Color.RED);
          g2.drawRect(start.x, start.y, end.x - start.x, end.y - start.y);
      private void paintShapes(Graphics2D g2) {
        System.out.println("translateX=" + translateX + ", translateY=" + translateY + ", zoom_x=" + zoom_x + ", zoom_y=" + zoom_y);
        g2.scale(zoom_x, zoom_y);
        g2.translate(translateX, translateY);
        for(int i = 0; i <= _rects.length - 1; i++){
          Rectangle rect = _rects;
    g2.setColor(_colors[i]);
    g2.fill(rect);
    public void reset() {
    zoom_x = 1.0;
    zoom_y = 1.0;
    translateX = 0;
    translateY = 0;
    repaint();
    public void mouseClicked(MouseEvent event) {
    public void mouseEntered(MouseEvent event) {
    public void mouseExited(MouseEvent event) {
    public void mouseMoved(MouseEvent event) {
    public static void main(String[] args) {
    final TestCase test = new TestCase();
    JButton btnFullExtent = new JButton("Reset");
    btnFullExtent.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent event) {
    test.reset();
    JToolBar toolBar = new JToolBar();
    toolBar.add(btnFullExtent);
    final JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().setLayout(new BorderLayout());
    f.getContentPane().add(toolBar, BorderLayout.NORTH);
    f.getContentPane().add(test, BorderLayout.CENTER);
    f.setSize(600, 400);
    f.setLocationRelativeTo(null);
    f.setVisible(true);

  • I can't get my iPad to find my Apple TV. Where do I find the rectangle with the triangle in it to turn on the tv link. I have no problem doing this from my macbookpro.

    I can't get my ipad4 to find my Apple TV box, I where do I find the little rectangle box with a triangle in it that I click on my MacBook Pro to turn on the appletv?

    Welcome to the Apple Community.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Check AirPlay is turned on on the Apple TV (turn it off and on if it already is)
    Check that both devices are on the same network (Settings > Wifi, on the mobile device and Settings > General > Network, on the Apple TV).
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router. (Also try removing it’s power cord for at least 30 seconds)
    Restart your mobile device.

  • Create a new Buffered Image using Raster and ColorModel

    Sorry , I crosspost this message,because no one reply.
    Recently,I write a programme combining C++ and Java .
    The C++ part create a array containing image data in form of BI_RGB and biBitCount==32.
    The java part create a image using Raster and ColorModel like this:
       static int[] data ;
       DataBuffer db = new DataBufferInt(data, data.length);
       WritableRaster wr =Raster.createPackedRaster(db, 1024,768, 32, null);
       ColorModel cm = new DirectColorModel(32,0xff0000,0x00ff00,0x0000ff);
       img = new BufferedImage(cm, wr, false, null);But it doesn't work .
    it report this:
    Exception in thread "main" java.lang.IllegalArgumentException: Raster sun.awt.im
    age.SunWritableRaster@dff3a2 is incompatible with ColorModel DirectColorModel: r
    mask=ff0000 gmask=ff00 bmask=ff amask=0
    at java.awt.image.BufferedImage.<init>(BufferedImage.java:549)
    at monitor.test.Perform2.main(Perform2.java:39)

    hey epico
    compiles & runs 4 me
    see javadocs for SinglePixelPackedSampleModel
    import java.awt.image.*;
    public class Tester {
    DataBuffer db;
    WritableRaster wr;
    ColorModel cm;
    BufferedImage im;
    int[] data;
    int[] masks;
    int w = 768;
    int h = 576;
      public Tester() {
        data = new int[768*576];
        for (int i = 0;i < w*h ;i++ ) {
          data[i] = 0;
        masks = new int[3];
        masks[0] = 0xff0000;
        masks[1] = 0x00ff00;
        masks[2] = 0x0000ff;
        db = new DataBufferInt(data,data.length);
        SinglePixelPackedSampleModel sm = new SinglePixelPackedSampleModel(DataBuffer.TYPE_INT,w,h,masks);
        cm = new DirectColorModel(32,0xff0000,0x00ff00,0x0000ff);
        wr = Raster.createWritableRaster(sm,db,null);
        im = new BufferedImage(cm,wr,false,null);
      public static void main(String[] args) {
        Tester tester1 = new Tester();
    }

  • Text put into a canvas element with context.fillText() always has a black box where each letter goes. If the text is black you just see the black rectangle. If the text is not black you see it on the black bounding box. Surely this is not right.

    This has happened on the last few versions of firefox, as long as canvas has been supported. I see other people's screen shots from canvas tutorials, and the text always looks normal. On my system, any text put into a canvas element via context.fillText() will have a black bounding box for each letter, sized appropriately for the letter. If the text is black, of course you only see rectangles. If the text is a contrasting color, then you can read it, but it looks bizarre.

    Thomas...same kind of crap here.
    I used Custom Text - entered a sentence, hit return, entered another.
    Set to 72 pt.
    The default alignment is centred - I want left aligned text...the text start point stays at the centre of frame and the sentence runs off the edge of the bounding box.
    There is no settings in the Text or Title inspector dialog to correct that!
    Using Transform will not sort it!

  • How to Trim Rectangle with text to create reflection?

    Hello Everyone,
    I am realtively new to Illustrator and I am facing a problem that I am hoping some expert here can resolve. I have some text and I have converted it to outlines. Now I want to create shine on it. I want to fill a rectangle with white color and then clip it with text to give reflection effect but I can't figure out how to do it. I have selected my text and rectangle and tried all options in path finder tool but nothing seems to work. Please guide me how can this be done.
    Regards,
    Afraz Ali

    Afraz Ali,
    If you want to have the colour/colours/colour transition of the rectangle where the text is is nothing outside it, in other words colour the text with the colouring of the rectangle, you may:
    Use Live Type over the rectangle, select both, and Object>Clipping Mask>Make.
    With outlined type, you have to turn the lettershapes into a Compound Shape first.
    As you can see, it is simpler to just use Live Type, and it is editable.

Maybe you are looking for

  • Adobe Connect Addin 11.2 r247 has stopped working

    Every time I try to screen share, or share an application.  Any ideas? Thanks Rich

  • Preview PDF in Livecycle 8.0

    I have just had Adobe Reader version 9 installed on my work laptop and i now have an issue with the preview PDF tab, a message comes up with an error saying i have to have reader version 8 or 9 installed. Hope someone can help Graham

  • Iframe in adf 11g

    Hi, i am using adf 11g. I wanted to shown BAM reports in my ADF page. I used iframe and displayed the login page of the BAM reports. But logging into the BAM reports jsut refreshes the ADF page. How to access all the BAM pages inside the adf page. <f

  • WebSAPConosole and SAPConsole Transactions

    I have a question regarding the SAPConsole transactions.  I need to develop Good Movement (Non-WM) transactions for SAPConsole using MB_GOODS_MOVEMENT_CREATE.  Does anyone know SAP Best Practice for doing this?  Is it to copy the R/3 transactions (MB

  • Configuring imta.cnf to check mailhost attribute

    I have 2 messaging servers - one of them is receiving email from the net. Both are connected to the same ldap server. Is there a way to check the mailhost of a given user, and use the value of the "mailhost" attribute as a starting point for the rewr