/* * Copyright (C) 2010-2016 JPEXS, All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3.0 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. */ package com.jpexs.decompiler.flash.types.filters; import com.jpexs.decompiler.flash.types.BasicType; import com.jpexs.decompiler.flash.types.annotations.Reserved; import com.jpexs.decompiler.flash.types.annotations.SWFType; import com.jpexs.helpers.SerializableImage; /** * Blur filter based on a sub-pixel precise median filter * * @author JPEXS */ public class BLURFILTER extends FILTER { /** * Horizontal blur amount */ @SWFType(BasicType.FIXED) public double blurX; /** * Vertical blur amount */ @SWFType(BasicType.FIXED) public double blurY; /** * Number of blur passes */ @SWFType(value = BasicType.UB, count = 5) public int passes; @Reserved @SWFType(value = BasicType.UB, count = 3) public int reserved; public BLURFILTER() { super(1); } @Override public SerializableImage apply(SerializableImage src) { return Filtering.blur(src, (int) blurX, (int) blurY, passes); } @Override public double getDeltaX() { return blurX; } @Override public double getDeltaY() { return blurY; } }