Package tv.porst.swfretools.parser.structures

Examples of tv.porst.swfretools.parser.structures.ShapeWithStyle


   */
  public static DefineShape2Tag parse(final RecordHeader header, final SWFBinaryParser parser) throws SWFParserException {

    final UINT16 shapeId = parseUINT16(parser, 0x00006, "DefineShape2::ShapeID");
    final Rect shapeBounds = RectParser.parse(parser, "DefineShape2::ShapeBounds");
    final ShapeWithStyle shapes = ShapeWithStyleParser.parse(parser, "DefineShape2::Shapes");

    return new DefineShape2Tag(header, shapeId, shapeBounds, shapes);
  }
View Full Code Here


   */
  public static DefineShapeTag parse(final RecordHeader header, final SWFBinaryParser parser) throws SWFParserException {

    final UINT16 shapeId = parseUINT16(parser, 0x00006, "DefineShape::ShapeID");
    final Rect shapeBounds = RectParser.parse(parser, "DefineShape::ShapeBounds");
    final ShapeWithStyle shapes = ShapeWithStyleParser.parse(parser, "DefineShape::Shapes");

    return new DefineShapeTag(header, shapeId, shapeBounds, shapes);
  }
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.parser.structures.ShapeWithStyle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.