├── .gitignore ├── .project ├── LICENSE ├── README.md ├── doc ├── allclasses-frame.html ├── allclasses-noframe.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── org │ └── fit │ │ └── vips │ │ ├── Separator.html │ │ ├── Vips.html │ │ ├── VipsBlock.html │ │ ├── VipsOutput.html │ │ ├── VipsParser.html │ │ ├── VipsSeparatorDetector.html │ │ ├── VipsSeparatorGraphicsDetector.html │ │ ├── VipsSeparatorNonGraphicsDetector.html │ │ ├── VipsTester.html │ │ ├── VisualStructure.html │ │ ├── VisualStructureConstructor.html │ │ ├── class-use │ │ ├── Separator.html │ │ ├── Vips.html │ │ ├── VipsBlock.html │ │ ├── VipsOutput.html │ │ ├── VipsParser.html │ │ ├── VipsSeparatorDetector.html │ │ ├── VipsSeparatorGraphicsDetector.html │ │ ├── VipsSeparatorNonGraphicsDetector.html │ │ ├── VipsTester.html │ │ ├── VisualStructure.html │ │ └── VisualStructureConstructor.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html ├── overview-tree.html ├── package-list ├── resources │ └── inherit.gif ├── serialized-form.html └── stylesheet.css ├── pom.xml └── src ├── main └── java │ └── org │ └── fit │ └── vips │ ├── Separator.java │ ├── Vips.java │ ├── VipsBlock.java │ ├── VipsOutput.java │ ├── VipsParser.java │ ├── VipsSeparatorDetector.java │ ├── VipsSeparatorGraphicsDetector.java │ ├── VipsSeparatorNonGraphicsDetector.java │ ├── VipsTester.java │ ├── VisualStructure.java │ └── VisualStructureConstructor.java └── test └── java └── org └── fit └── vips └── VipsTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/README.md -------------------------------------------------------------------------------- /doc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/allclasses-frame.html -------------------------------------------------------------------------------- /doc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/allclasses-noframe.html -------------------------------------------------------------------------------- /doc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/constant-values.html -------------------------------------------------------------------------------- /doc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/deprecated-list.html -------------------------------------------------------------------------------- /doc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/help-doc.html -------------------------------------------------------------------------------- /doc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-1.html -------------------------------------------------------------------------------- /doc/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-10.html -------------------------------------------------------------------------------- /doc/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-11.html -------------------------------------------------------------------------------- /doc/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-12.html -------------------------------------------------------------------------------- /doc/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-13.html -------------------------------------------------------------------------------- /doc/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-14.html -------------------------------------------------------------------------------- /doc/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-15.html -------------------------------------------------------------------------------- /doc/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-16.html -------------------------------------------------------------------------------- /doc/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-17.html -------------------------------------------------------------------------------- /doc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-2.html -------------------------------------------------------------------------------- /doc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-3.html -------------------------------------------------------------------------------- /doc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-4.html -------------------------------------------------------------------------------- /doc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-5.html -------------------------------------------------------------------------------- /doc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-6.html -------------------------------------------------------------------------------- /doc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-7.html -------------------------------------------------------------------------------- /doc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-8.html -------------------------------------------------------------------------------- /doc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index-files/index-9.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/org/fit/vips/Separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/Separator.html -------------------------------------------------------------------------------- /doc/org/fit/vips/Vips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/Vips.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsBlock.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsOutput.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsParser.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsSeparatorDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsSeparatorDetector.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsSeparatorGraphicsDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsSeparatorGraphicsDetector.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsSeparatorNonGraphicsDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsSeparatorNonGraphicsDetector.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VipsTester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VipsTester.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VisualStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VisualStructure.html -------------------------------------------------------------------------------- /doc/org/fit/vips/VisualStructureConstructor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/VisualStructureConstructor.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/Separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/Separator.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/Vips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/Vips.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsBlock.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsOutput.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsParser.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsSeparatorDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsSeparatorDetector.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsSeparatorGraphicsDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsSeparatorGraphicsDetector.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsSeparatorNonGraphicsDetector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsSeparatorNonGraphicsDetector.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VipsTester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VipsTester.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VisualStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VisualStructure.html -------------------------------------------------------------------------------- /doc/org/fit/vips/class-use/VisualStructureConstructor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/class-use/VisualStructureConstructor.html -------------------------------------------------------------------------------- /doc/org/fit/vips/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/package-frame.html -------------------------------------------------------------------------------- /doc/org/fit/vips/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/package-summary.html -------------------------------------------------------------------------------- /doc/org/fit/vips/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/package-tree.html -------------------------------------------------------------------------------- /doc/org/fit/vips/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/org/fit/vips/package-use.html -------------------------------------------------------------------------------- /doc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/overview-tree.html -------------------------------------------------------------------------------- /doc/package-list: -------------------------------------------------------------------------------- 1 | org.fit.vips 2 | -------------------------------------------------------------------------------- /doc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/resources/inherit.gif -------------------------------------------------------------------------------- /doc/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/serialized-form.html -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/Separator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/Separator.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/Vips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/Vips.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsBlock.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsOutput.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsParser.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsSeparatorDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsSeparatorDetector.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsSeparatorGraphicsDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsSeparatorGraphicsDetector.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsSeparatorNonGraphicsDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsSeparatorNonGraphicsDetector.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VipsTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VipsTester.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VisualStructure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VisualStructure.java -------------------------------------------------------------------------------- /src/main/java/org/fit/vips/VisualStructureConstructor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/main/java/org/fit/vips/VisualStructureConstructor.java -------------------------------------------------------------------------------- /src/test/java/org/fit/vips/VipsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpopela/vips_java/HEAD/src/test/java/org/fit/vips/VipsTest.java --------------------------------------------------------------------------------