JNA VS skija

Compare JNA vs skija and see what are their differences.

JNA

Java Native Access (by java-native-access)

skija

Java bindings for Skia (by JetBrains)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
JNA skija
22 7
8,247 2,605
0.7% 0.1%
7.8 2.0
24 days ago 9 months ago
Java Java
GNU General Public License v3.0 or later Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

JNA

Posts with mentions or reviews of JNA. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-10.
  • FFM (Foreign Function and Memory API) Goes Final
    3 projects | news.ycombinator.com | 10 Dec 2023
    As far as I understand it, with JNA, all calls into C code go through libffi: https://github.com/java-native-access/jna/blob/master/www/Fu...

    This means that every call sets up some libffi data structures and libffi uses this information to perform the native call. Likewise in the other direction for return values. With JNI (and Panama), Hotspot can directly emit the argument/return code a the call, not too dissimilar from what a C or C++ compiler would do. There is still some overhead from maintaining JVM invariants. For example, I think a thread blocked in an FFI call can still participate in a safepoint. But that applies to JNI as well.

  • Projetos em Java -- Por que você ou sua equipe escolheram a linguagem Java?
    1 project | /r/brdev | 8 Jun 2023
  • Are there any Non-Mobile Kotlin Native libraries wrapping C libraries like libhidapi/opengl?
    3 projects | /r/Kotlin | 6 Aug 2022
    If you were prepared to go to the JVM you might try JNA. https://github.com/java-native-access/jna
  • How to create fundamental libraries for my language?
    2 projects | /r/ProgrammingLanguages | 22 Jul 2022
    Other good example, but for Java platform is JNA library. Do not mix it with Java's JNI, which is a bad example of how it could be done.
  • Rust vs Java for simple small GUI apps
    1 project | /r/learnrust | 22 May 2022
    In case you haven't used it (assuming that you already know about JNI, for comparison) - https://github.com/java-native-access/jna is about as easy as it gets for native interop. Also, as mentioned in another comment, with the Java FFM (Foreign Function and Memory) API already in preview mode, pretty soon, there will be no external dependencies at all, and Java should be able to interop with any language that can talk to C.
  • Kotlin/Native
    1 project | /r/Kotlin | 28 Apr 2022
  • Does Java 18 finally have a better alternative to JNI?
    5 projects | dev.to | 11 Apr 2022
    The complexity of JNI has given rise to some community-driven libraries that make it simpler to do FFI in Java. Java Native Access (JNA) is one of them. It's built on top of JNI and at least makes FFI easier to use, especially as it removes the need to write any C binding code manually and reduces the chances of memory safety issues. Still, it has some of the disadvantages of being JNI-based and is slightly slower than JNI in many cases. However, JNA is widely used and battle-tested, so definitely a better option than using JNI directly.
  • JEP 419: Foreign Function and Memory API
    4 projects | news.ycombinator.com | 29 Mar 2022
    This is about calling into any native operating system APIs, as long as they are callable via C or C++ (which these days means "all" operating system APIs).

    JNI is somewhat harder to use, because you need custom glue on both sides of the border: Some custom classes in Java and some custom code on the C (and C++) side.

    This proposal would remove the need for the glue on the C side and would allow a pure java solution.

    Something like this has existed in third-party form for a while as JNA (https://github.com/java-native-access/jna), but now it's going to be built into the JRE itself (if the proposal passes through review)

  • How run ToS on MacOSX as a java command?
    1 project | /r/thinkorswim | 6 Dec 2021
  • Choosing Java as your language for a Machine Learning project
    2 projects | /r/java | 4 Nov 2021
    I use JNA https://github.com/java-native-access/jna , as you can write the entire interface in Java faster as well as easier without the need of messing with the complexities of JNI.

skija

Posts with mentions or reviews of skija. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-28.
  • What UI framework does JetBrains use for it's IDE products?
    2 projects | /r/java | 28 Dec 2022
    I think IntelliJ was built on Swing and predates JavaFX… however, I’m curious if they’ve got plans to integrate their Skia integration work that backs desktop compose: https://github.com/JetBrains/skija
  • The Decline and Fall of Java on the Desktop Part 1 (1999-2005)
    11 projects | news.ycombinator.com | 2 Mar 2022
    Maybe the story is not finished yet. New approaches like JetBrain's Compose (https://www.jetbrains.com/de-de/lp/compose-mpp/) with a React inspired programming model might bring some new interest to the platform. Then there is a Java binding library for Skia (https://github.com/JetBrains/skija), and JavaFX is also alive and high quality.

    As everyone is used to fat Electron apps now, Java applications (especially compiled and packed with new JDK features) might be refreshing.

  • I'm losing sleep over Java September 30, 1996
    3 projects | news.ycombinator.com | 6 Jan 2022
    I think it's the core, the 2D engine, just never got the love it needed to be a great place to start. Nobody seemed to prioritize making that happen.

    Like, the antialiasing was noticably fuzzy. I never found an applet that looked like it belonged on the webpage. And when I built a few, it was a lot of work to even get font rendering to not be horrendous. And even then, you'd see what the browser rendered vs what the applet rendered and they were always off. I remember using images instead of font rendering sometimes.

    So, if you made a swing app, it was easy to put together, but hard to make look "professional".

    By the time of the Oracle acquisition, I'm pretty sure everyone just realized "the browser won" and that's why we just had JavaFX get broken off the platform and basically put out to pasture. But it's not like much went into the core platform itself to make building great UIs easy. The underlying 2D rendering just never worked efficiently.

    I mean, even today, there's some serious performance issues with IntelliJ on 4k monitors with scaling. https://youtrack.jetbrains.com/issue/JBR-526

    When I look at where JetBrains is going, it sure seems like they are building on top of a better 2D engine, in this case, skia: https://github.com/JetBrains/skija.

  • Running IntelliJ IDEA with JDK 17 for Better Render Performance with Metal
    2 projects | /r/java | 8 Dec 2021
    Under the covers it uses Skija which is a java wrapper for Skia which is a C++ 2D graphics engine (https://github.com/JetBrains/skija)
  • Creating GUI without framework or library
    2 projects | /r/learnjava | 14 Oct 2021
  • Clojure GUI or front-end - what are the options?
    6 projects | /r/Clojure | 26 Apr 2021
    You can take a look at Skija from Jetbrains. It's a wrapper around the Skia library used by Chrome, Xamarin, LibreOffice, among others.
  • ImgMacroBot — Telegram inline bot to generate image macros on the fly.
    2 projects | dev.to | 15 Mar 2021
    Technically, the bot is written in Kotlin using Ktor and Koin. It's a single endpoint web service, listening for Telegram Bot API webhooks. Text is drawn using Oswald font (I need Cyrillic, not supported in Anton) with Skija library, a Java wrapper for Skia, a 2D library powering your phone and browser. It is really cool and next time you need to make something with graphics, consider using Skia and its wrapper for your language. Next, generated images are upload to Imgur via its API (the documentation could be better). The whole thing is running on a free VM in Oracle Cloud. So, yeah, next time you need to host something lightweight — check out their offering. Oracle also provides a free DB instance, which I'm using to cache the links. Monitoring: Grafana Cloud (also free). Deployments: GitHub Actions + Ansible. So it didn't cost me a penny, except for ~50 hours of coding in two weeks on the evenings.

What are some alternatives?

When comparing JNA and skija you can also consider the following projects:

JNR - Java Abstracted Foreign Function Layer

membrane - A Simple UI Library That Runs Anywhere

JavaCPP - The missing bridge between Java and native C++

cljfx - Declarative, functional and extensible wrapper of JavaFX inspired by better parts of react and re-frame

SWIG - SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.

HumbleUI - Clojure Desktop UI framework

panama-foreign - https://openjdk.org/projects/panama

libGDX - Desktop/Android/HTML5/iOS Java game development framework

rust-bindgen - Automatically generates Rust FFI bindings to C (and some C++) libraries.

JWM - Cross-platform window management and OS integration library for Java

Introducing .NET Multi-platform App UI (MAUI) - .NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.

seesaw - Seesaw turns the Horror of Swing into a friendly, well-documented, Clojure library