You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**⚡ 10–50× faster than Java's BufferedImage.** Off-heap zero-copy memory. SIMD AVX2 accelerated image scaling and blur filters.
11
+
**⚡ 10–50× faster than Java's BufferedImage.** Off-heap zero-copy memory. SIMD AVX2 accelerated Bicubic spline, Area-Average Anti-Aliasing, and blur filters.
12
12
13
-
`FastImage` provides ultra-fast C++ native image processing for Java applications, replacing slow JVM `BufferedImage` rendering loops with SIMD-accelerated Bilinear scaling, Dual-Kawase blur, and color transforms.
13
+
`FastImage` provides ultra-fast C++ native image processing for Java applications, replacing slow JVM `BufferedImage` rendering loops with SIMD-accelerated Catmull-Rom Bicubic scaling, Area-Average Anti-Aliasing, Dual-Kawase blur, and color transforms.
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,14 @@
1
1
# FastImage Changelog
2
2
3
+
## [0.1.3] - 2026-09-05
4
+
-**Catmull-Rom Bicubic Resampling Kernel**:
5
+
- Implemented high-precision `nativeResizeBicubic()` C++ kernel using Catmull-Rom cubic splines.
6
+
- Added `FastImage.resizeBicubic(int w, int h)` providing supreme edge anti-aliasing and sharpness for high-resolution graphics and video.
7
+
-**Enhanced Anti-Aliasing Suite**:
8
+
- Unified `resizeBicubic`, `resizeAreaAverage` (box downsampling), and `resize` (bilinear) under FastImage as the central image processing hub for FastJava.
9
+
-**Ecosystem Integration**:
10
+
- Direct integration target for `FastScreen 0.1.3` visual pipeline and future `FastGPU` compute bridges.
11
+
3
12
## [0.1.2] - 2026-09-04
4
13
-**Zero-Copy Native Buffer Wrapping**:
5
14
- Implemented `nativeWrap()` C++ JNI bridge allowing zero-copy instantiation of `FastImage`.
0 commit comments