web-dev-qa-db-ja.com

テキストの形で画像を切り取ります

別の画像のテキストの形で画像を切り抜く必要があります。画像で表示するのが一番いいと思います。

これは猫の写真です:

Photo of a Nice cat

これが私が切り取りたいテキストです:

Text to cut out of the cat photo

結果の画像は次のようになります。

Resulting cut-out of the cat photo

テキスト画像は常に黒で背景が透明になり、結果のカットアウトも背景が透明になります。両方の入力画像も同じサイズになります。

43
Matt

新しいBufferedImageを作成し、Word catのすべてのピクセルを反復処理し、それらが黒の場合は、cat-imageピクセルを新しい画像にコピーします。

ここにいくつかのコードがあります:(最終的な作業コード、アンチエイリアスをサポート

public static BufferedImage textEffect(BufferedImage image, BufferedImage text) {
    if (image.getWidth() != text.getWidth() ||
        image.getHeight() != text.getHeight())
    {
        throw new IllegalArgumentException("Dimensions are not the same!");
    }
    BufferedImage img = new BufferedImage(image.getWidth(),
                                          image.getHeight(),
                                          BufferedImage.TYPE_INT_ARGB_PRE);

    for (int y = 0; y < image.getHeight(); ++y) {
        for (int x = 0; x < image.getWidth(); ++x) {
           int textPixel = text.getRGB(x, y);
           int textAlpha = (textPixel & 0xFF000000);
           int sourceRGB = image.getRGB(x, y);
           int newAlpha = (int) (((textAlpha >> 24) * (sourceRGB >> 24)) / 255d);
           int imgPixel = (newAlpha << 24) |  (sourceRGB & 0x00FFFFFF);
           int rgb = imgPixel | textAlpha;
           img.setRGB(x, y, rgb);

        }
    }
    return img;
}
21

Cat text

import Java.awt.*;
import Java.awt.font.*;
import Java.awt.image.BufferedImage;
import Java.awt.geom.Rectangle2D;
import javax.imageio.ImageIO;
import Java.net.URL;
import Java.io.File;

class PictureText {

    public static void main(String[] args) throws Exception {
        URL url = new URL("http://i.stack.imgur.com/Nqf3H.jpg");
        BufferedImage originalImage = ImageIO.read(url);
        final BufferedImage textImage = new BufferedImage(
            originalImage.getWidth(),
            originalImage.getHeight(),
            BufferedImage.TYPE_INT_ARGB);
        Graphics2D g = textImage.createGraphics();
        FontRenderContext frc = g.getFontRenderContext();
        Font font = new Font(Font.SANS_SERIF, Font.BOLD, 250);
        GlyphVector gv = font.createGlyphVector(frc, "Cat");
        Rectangle2D box = gv.getVisualBounds();
        int xOff = 25+(int)-box.getX();
        int yOff = 80+(int)-box.getY();
        Shape shape = gv.getOutline(xOff,yOff);
        g.setClip(shape);
        g.drawImage(originalImage,0,0,null);
        g.setClip(null);
        g.setStroke(new BasicStroke(2f));
        g.setColor(Color.BLACK);
        g.setRenderingHint(
            RenderingHints.KEY_ANTIALIASING,
            RenderingHints.VALUE_ANTIALIAS_ON);
        g.draw(shape);

        g.dispose();

        File file = new File("cat-text.png");
        ImageIO.write(textImage,"png",file);
        Desktop.getDesktop().open(file);
    }
}
33
Andrew Thompson

GlyphVectorを使用します。 Fontクラスを使用する

_public GlyphVector layoutGlyphVector(FontRenderContext frc,
                                         char[] text,
                                         int start,
                                         int limit,
                                         int flags) {
_

Public abstract Shape getOutline()によってグリフベクトルからアウトラインShapeを取得できます。

アウトラインShapeをクリップとしてGraphicsインスタンスに割り当てます。

グラフィックに画像を描画します。

クリップされた形状のみが塗りつぶされます。

15
StanislavL

いいえJavaここにありますが、必要な画像操作は簡単に理解できます。Mathematicaでは:

enter image description here

8
Dr. belisarius

Marvin Framework を使用して、わずか数行のソースコードでJavaで実行できます。

enter image description here

ソースコード:

public class CutAndFill {
    public static void main(String[] args) {
        // 1. Load images
        MarvinImage catImage = MarvinImageIO.loadImage("./res/catImage.jpg");
        MarvinImage catText = MarvinImageIO.loadImage("./res/catText.png");

        // 2. Load plug-in, set parameters and process de image
        MarvinImagePlugin combine = MarvinPluginLoader.loadImagePlugin("org.marvinproject.image.combine.combineByMask");
        combine.setAttribute("combinationImage", catImage);
        combine.setAttribute("colorMask", Color.black);
        combine.process(catText.clone(), catText);

        // 3. Save the output image.
        MarvinImageIO.saveImage(catText, "./res/catOut.jpg");
    }
}