Giter Club home page Giter Club logo

vavi-image's Introduction

Release Java CI CodeQL Java

vavi-image

๐ŸŽจ Imaging the world!

Formats

  • artmaster 88 (old school japanese pc-8801,9801 image format)
  • mag (maki-chan graphic loader: old school japanese pc-8801,9801 image format)
  • zim (z's staff kid: old school japanese 9801 image format)
  • maki (old school japanese pc-8801,9801,x68000 image format)
  • pic (old school japanese x68000 image format)
  • pi (old school japanese pc-9801 image format)
  • windows bitmap
  • gif (non lzw)
  • windows icon
  • ppm

Resizing

type quality speed comment
AwtResampleOp 4 ร— java.awt.Image#getScaledInstance(int,int,Image.SCALE_AREA_AVERAGING)
FfmpegResamle 3 โ—‹ ??? (AREA_AVERAGING)
Lanczos3ResampleOp 5 ร— ๐Ÿ‘‘
G2dResample 2 โ–ณ Graphics2d#drawImage with rendering hints (VALUE_INTERPOLATION_NEAREST_NEIGHBOR)
AffineTransformOp 2 TYPE_NEAREST_NEIGHBOR

Quantization

type quality comment
ImageMagick
NeuralNet ๐Ÿ‘‘ comparison
OctTree

Installation

TODO

  • test OctTreeQuantizer (only 256 colors?)
  • complete ImageMagikQuantizer
  • Lanczos3 filter using AWT API
  • BufferedImageOp ???
  • https://github.com/iariro/N88BasicImage
  • ffmpeg resize 4byte 32bit operation is wrong
  • DaVinchi (wip, branch:davinch)
  • n88basic image format (wip, branch:n88basic)
  • yet another pic image format (wip, branch:pic)

Tech Know

  • Mac Open JDK's JNI library extension is .dylib already common
  • libsescale has MMX bug, this causes segmentation fault when resizing image.

References

License

Image I/O PPM Reader

๐Ÿ…ฎ Public Domain

ImageMagik

/*
 *  Permission is hereby granted, free of charge, to any person obtaining a
 *  copy of this software and associated documentation files ("ImageMagick"),
 *  to deal in ImageMagick without restriction, including without limitation
 *  the rights to use, copy, modify, merge, publish, distribute, sublicense,
 *  and/or sell copies of ImageMagick, and to permit persons to whom the
 *  ImageMagick is furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in
 *  all copies or substantial portions of ImageMagick.
 *
 *  The software is provided "as is", without warranty of any kind, express or
 *  implied, including but not limited to the warranties of merchantability,
 *  fitness for a particular purpose and noninfringement.  In no event shall
 *  E. I. du Pont de Nemours and Company be liable for any claim, damages or
 *  other liability, whether in an action of contract, tort or otherwise,
 *  arising from, out of or in connection with ImageMagick or the use or other
 *  dealings in ImageMagick.
 *
 *  Except as contained in this notice, the name of the E. I. du Pont de
 *  Nemours and Company shall not be used in advertising or otherwise to
 *  promote the sale, use or other dealings in ImageMagick without prior
 *  written authorization from the E. I. du Pont de Nemours and Company.
 */

Java Image Editor

| The downloadable source code on this page is released under the Apache License. Basically, this means that you are free to do whatever you like with this code, but it's not my fault if your satellite/nuclear power station/missile system fails as a result. Have fun! | | Licensed under the Apache License, Version 2.0 (the "License"); you may not use this code except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

SkyView

  • none?

Java Imaging Utilities

  • GNU General Public License (GPL) version 2

libswscale (ffmpeg)

  • GNU General Public License (GPL) version 2
  • FFmpeg License and Legal Considerations

vavi-image's People

Contributors

umjammer avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

vavi-image's Issues

[help me!] maven doesn't work recently at github actions

github workflow reports

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  02:50 min
[INFO] Finished at: 2023-03-23T06:29:22Z
[INFO] ------------------------------------------------------------------------
Error:  Failed to execute goal org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar (default-jar) on project vavi-image: You have to use a classifier to attach supplemental artifacts to the project instead of replacing them. -> [Help 1]
Error:  
Error:  To see the full stack trace of the errors, re-run Maven with the -e switch.
Error:  Re-run Maven using the -X switch to enable full debug logging.
Error:  
Error:  For more information about the errors and possible solutions, please read the following articles:
Error:  [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Error: Process completed with exit code 1.

my change is only below

diff --git a/pom.xml b/pom.xml
index 219b296..10f4c9e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
 
   <groupId>vavi</groupId>
   <artifactId>vavi-image</artifactId>
-  <version>1.0.10-SNAPSHOT</version>
+  <version>1.0.11</version>
 
   <name>Vavi Imaging API</name>
   <organization>
@@ -113,7 +113,6 @@
             </executions>
           </plugin>
 
-
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
@@ -224,7 +223,7 @@
       <dependency>
         <groupId>org.junit</groupId>
         <artifactId>junit-bom</artifactId>
-        <version>5.9.0</version>
+        <version>5.9.2</version>
         <type>pom</type>
         <scope>import</scope>
       </dependency>
@@ -235,7 +234,7 @@
     <dependency>
       <groupId>com.github.umjammer</groupId>
       <artifactId>vavi-commons</artifactId>
-      <version>1.1.8</version>
+      <version>1.1.9</version>
     </dependency>
     <dependency>
       <groupId>com.github.umjammer</groupId>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.