aboutsummaryrefslogtreecommitdiff
path: root/core/image
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-28 01:42:45 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 12:42:27 +0100
commit170e314f839f013fe58e0c91a61a34c1dbcfecd2 (patch)
tree71bbbafd5adfbf64d468bcc146a81abef16b216e /core/image
parentf63c2094784849ab1ebe1688558e90410af83152 (diff)
core:os -> core:os/os for core:image
Diffstat (limited to 'core/image')
-rw-r--r--core/image/bmp/bmp_os.odin14
-rw-r--r--core/image/general_os.odin8
-rw-r--r--core/image/jpeg/jpeg_os.odin8
-rw-r--r--core/image/netpbm/netpbm_os.odin14
-rw-r--r--core/image/png/doc.odin348
-rw-r--r--core/image/png/png_os.odin10
-rw-r--r--core/image/qoi/qoi_os.odin41
-rw-r--r--core/image/tga/tga_os.odin36
8 files changed, 62 insertions, 417 deletions
diff --git a/core/image/bmp/bmp_os.odin b/core/image/bmp/bmp_os.odin
index 70a85a784..971750fda 100644
--- a/core/image/bmp/bmp_os.odin
+++ b/core/image/bmp/bmp_os.odin
@@ -1,18 +1,18 @@
#+build !js
package core_image_bmp
-import "core:os"
-import "core:bytes"
+import os "core:os/os2"
+import "core:bytes"
load :: proc{load_from_file, load_from_bytes, load_from_context}
load_from_file :: proc(filename: string, options := Options{}, allocator := context.allocator) -> (img: ^Image, err: Error) {
context.allocator = allocator
- data, ok := os.read_entire_file(filename)
- defer delete(data)
+ data, data_err := os.read_entire_file(filename, allocator)
+ defer delete(data, allocator)
- if ok {
+ if data_err == nil {
return load_from_bytes(data, options)
} else {
return nil, .Unable_To_Read_File
@@ -28,7 +28,7 @@ save_to_file :: proc(output: string, img: ^Image, options := Options{}, allocato
defer bytes.buffer_destroy(out)
save_to_buffer(out, img, options) or_return
- write_ok := os.write_entire_file(output, out.buf[:])
+ write_err := os.write_entire_file(output, out.buf[:])
- return nil if write_ok else .Unable_To_Write_File
+ return nil if write_err == nil else .Unable_To_Write_File
} \ No newline at end of file
diff --git a/core/image/general_os.odin b/core/image/general_os.odin
index 98eb5bdbe..e4de1c9a6 100644
--- a/core/image/general_os.odin
+++ b/core/image/general_os.odin
@@ -1,25 +1,23 @@
#+build !js
package image
-import "core:os"
+import os "core:os/os2"
load :: proc{
load_from_bytes,
load_from_file,
}
-
load_from_file :: proc(filename: string, options := Options{}, allocator := context.allocator) -> (img: ^Image, err: Error) {
- data, ok := os.read_entire_file(filename, allocator)
+ data, data_err := os.read_entire_file(filename, allocator)
defer delete(data, allocator)
- if ok {
+ if data_err == nil {
return load_from_bytes(data, options, allocator)
} else {
return nil, .Unable_To_Read_File
}
}
-
which :: proc{
which_bytes,
which_file,
diff --git a/core/image/jpeg/jpeg_os.odin b/core/image/jpeg/jpeg_os.odin
index 92c0bb447..aad172c91 100644
--- a/core/image/jpeg/jpeg_os.odin
+++ b/core/image/jpeg/jpeg_os.odin
@@ -1,17 +1,17 @@
#+build !js
package jpeg
-import "core:os"
+import os "core:os/os2"
load :: proc{load_from_file, load_from_bytes, load_from_context}
load_from_file :: proc(filename: string, options := Options{}, allocator := context.allocator) -> (img: ^Image, err: Error) {
context.allocator = allocator
- data, ok := os.read_entire_file(filename)
- defer delete(data)
+ data, data_err := os.read_entire_file(filename, allocator)
+ defer delete(data, allocator)
- if ok {
+ if data_err == nil {
return load_from_bytes(data, options)
} else {
return nil, .Unable_To_Read_File
diff --git a/core/image/netpbm/netpbm_os.odin b/core/image/netpbm/netpbm_os.odin
index 2cf2439ac..82ad55f35 100644
--- a/core/image/netpbm/netpbm_os.odin
+++ b/core/image/netpbm/netpbm_os.odin
@@ -1,27 +1,25 @@
#+build !js
package netpbm
-import "core:os"
+import os "core:os/os2"
load :: proc {
load_from_file,
load_from_bytes,
}
-
load_from_file :: proc(filename: string, allocator := context.allocator) -> (img: ^Image, err: Error) {
context.allocator = allocator
- data, ok := os.read_entire_file(filename); defer delete(data)
- if !ok {
+ data, data_err := os.read_entire_file(filename, allocator); defer delete(data)
+ if data_err == nil {
+ return load_from_bytes(data)
+ } else {
err = .Unable_To_Read_File
return
}
-
- return load_from_bytes(data)
}
-
save :: proc {
save_to_file,
save_to_buffer,
@@ -33,7 +31,7 @@ save_to_file :: proc(filename: string, img: ^Image, custom_info: Info = {}, allo
data: []byte; defer delete(data)
data = save_to_buffer(img, custom_info) or_return
- if ok := os.write_entire_file(filename, data); !ok {
+ if save_err := os.write_entire_file(filename, data); save_err != nil {
return .Unable_To_Write_File
}
diff --git a/core/image/png/doc.odin b/core/image/png/doc.odin
deleted file mode 100644
index 034a6775f..000000000
--- a/core/image/png/doc.odin
+++ /dev/null
@@ -1,348 +0,0 @@
-/*
-Reader for `PNG` images.
-
-The PNG specification is at [[ https://www.w3.org/TR/PNG/ ]].
-
-Example:
- package main
-
- import "core:image"
- // import "core:image/png"
- import "core:bytes"
- import "core:fmt"
-
- // For PPM writer
- import "core:mem"
- import "core:os"
-
- main :: proc() {
- track := mem.Tracking_Allocator{}
- mem.tracking_allocator_init(&track, context.allocator)
-
- context.allocator = mem.tracking_allocator(&track)
-
- demo()
-
- if len(track.allocation_map) > 0 {
- fmt.println("Leaks:")
- for _, v in track.allocation_map {
- fmt.printf("\t%v\n\n", v)
- }
- }
- }
-
- demo :: proc() {
- file: string
-
- options := image.Options{.return_metadata}
- err: image.Error
- img: ^image.Image
-
- file = "../../../misc/logo-slim.png"
-
- img, err = load(file, options)
- defer destroy(img)
-
- if err != nil {
- fmt.printf("Trying to read PNG file %v returned %v\n", file, err)
- } else {
- fmt.printf("Image: %vx%vx%v, %v-bit.\n", img.width, img.height, img.channels, img.depth)
-
- if v, ok := img.metadata.(^image.PNG_Info); ok {
- // Handle ancillary chunks as you wish.
- // We provide helper functions for a few types.
- for c in v.chunks {
- #partial switch c.header.type {
- case .tIME:
- if t, t_ok := core_time(c); t_ok {
- fmt.printf("[tIME]: %v\n", t)
- }
- case .gAMA:
- if gama, gama_ok := gamma(c); gama_ok {
- fmt.printf("[gAMA]: %v\n", gama)
- }
- case .pHYs:
- if phys, phys_ok := phys(c); phys_ok {
- if phys.unit == .Meter {
- xm := f32(img.width) / f32(phys.ppu_x)
- ym := f32(img.height) / f32(phys.ppu_y)
- dpi_x, dpi_y := phys_to_dpi(phys)
- fmt.printf("[pHYs] Image resolution is %v x %v pixels per meter.\n", phys.ppu_x, phys.ppu_y)
- fmt.printf("[pHYs] Image resolution is %v x %v DPI.\n", dpi_x, dpi_y)
- fmt.printf("[pHYs] Image dimensions are %v x %v meters.\n", xm, ym)
- } else {
- fmt.printf("[pHYs] x: %v, y: %v pixels per unknown unit.\n", phys.ppu_x, phys.ppu_y)
- }
- }
- case .iTXt, .zTXt, .tEXt:
- res, ok_text := text(c)
- if ok_text {
- if c.header.type == .iTXt {
- fmt.printf("[iTXt] %v (%v:%v): %v\n", res.keyword, res.language, res.keyword_localized, res.text)
- } else {
- fmt.printf("[tEXt/zTXt] %v: %v\n", res.keyword, res.text)
- }
- }
- defer text_destroy(res)
- case .bKGD:
- fmt.printf("[bKGD] %v\n", img.background)
- case .eXIf:
- if res, ok_exif := exif(c); ok_exif {
- /*
- Other than checking the signature and byte order, we don't handle Exif data.
- If you wish to interpret it, pass it to an Exif parser.
- */
- fmt.printf("[eXIf] %v\n", res)
- }
- case .PLTE:
- if plte, plte_ok := plte(c); plte_ok {
- fmt.printf("[PLTE] %v\n", plte)
- } else {
- fmt.printf("[PLTE] Error\n")
- }
- case .hIST:
- if res, ok_hist := hist(c); ok_hist {
- fmt.printf("[hIST] %v\n", res)
- }
- case .cHRM:
- if res, ok_chrm := chrm(c); ok_chrm {
- fmt.printf("[cHRM] %v\n", res)
- }
- case .sPLT:
- res, ok_splt := splt(c)
- if ok_splt {
- fmt.printf("[sPLT] %v\n", res)
- }
- splt_destroy(res)
- case .sBIT:
- if res, ok_sbit := sbit(c); ok_sbit {
- fmt.printf("[sBIT] %v\n", res)
- }
- case .iCCP:
- res, ok_iccp := iccp(c)
- if ok_iccp {
- fmt.printf("[iCCP] %v\n", res)
- }
- iccp_destroy(res)
- case .sRGB:
- if res, ok_srgb := srgb(c); ok_srgb {
- fmt.printf("[sRGB] Rendering intent: %v\n", res)
- }
- case:
- type := c.header.type
- name := chunk_type_to_name(&type)
- fmt.printf("[%v]: %v\n", name, c.data)
- }
- }
- }
- }
-
- fmt.printf("Done parsing metadata.\n")
-
- if err == nil && .do_not_decompress_image not_in options && .info not_in options {
- if ok := write_image_as_ppm("out.ppm", img); ok {
- fmt.println("Saved decoded image.")
- } else {
- fmt.println("Error saving out.ppm.")
- fmt.println(img)
- }
- }
- }
-
- // Crappy PPM writer used during testing. Don't use in production.
- write_image_as_ppm :: proc(filename: string, image: ^image.Image) -> (success: bool) {
-
- _bg :: proc(bg: Maybe([3]u16), x, y: int, high := true) -> (res: [3]u16) {
- if v, ok := bg.?; ok {
- res = v
- } else {
- if high {
- l := u16(30 * 256 + 30)
-
- if (x & 4 == 0) ~ (y & 4 == 0) {
- res = [3]u16{l, 0, l}
- } else {
- res = [3]u16{l >> 1, 0, l >> 1}
- }
- } else {
- if (x & 4 == 0) ~ (y & 4 == 0) {
- res = [3]u16{30, 30, 30}
- } else {
- res = [3]u16{15, 15, 15}
- }
- }
- }
- return
- }
-
- // profiler.timed_proc();
- using image
- using os
-
- flags: int = O_WRONLY|O_CREATE|O_TRUNC
-
- img := image
-
- // PBM 16-bit images are big endian
- when ODIN_ENDIAN == .Little {
- if img.depth == 16 {
- // The pixel components are in Big Endian. Let's byteswap back.
- input := mem.slice_data_cast([]u16, img.pixels.buf[:])
- output := mem.slice_data_cast([]u16be, img.pixels.buf[:])
- #no_bounds_check for v, i in input {
- output[i] = u16be(v)
- }
- }
- }
-
- pix := bytes.buffer_to_bytes(&img.pixels)
-
- if len(pix) == 0 || len(pix) < image.width * image.height * int(image.channels) {
- return false
- }
-
- mode: int = 0
- when ODIN_OS == .Linux || ODIN_OS == .Darwin {
- // NOTE(justasd): 644 (owner read, write; group read; others read)
- mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
- }
-
- fd, err := open(filename, flags, mode)
- if err != nil {
- return false
- }
- defer close(fd)
-
- write_string(fd,
- fmt.tprintf("P6\n%v %v\n%v\n", width, height, uint(1 << uint(depth) - 1)),
- )
-
- if channels == 3 {
- // We don't handle transparency here...
- write_ptr(fd, raw_data(pix), len(pix))
- } else {
- bpp := depth == 16 ? 2 : 1
- bytes_needed := width * height * 3 * bpp
-
- op := bytes.Buffer{}
- bytes.buffer_init_allocator(&op, bytes_needed, bytes_needed)
- defer bytes.buffer_destroy(&op)
-
- if channels == 1 {
- if depth == 16 {
- assert(len(pix) == width * height * 2)
- p16 := mem.slice_data_cast([]u16, pix)
- o16 := mem.slice_data_cast([]u16, op.buf[:])
- #no_bounds_check for len(p16) != 0 {
- r := u16(p16[0])
- o16[0] = r
- o16[1] = r
- o16[2] = r
- p16 = p16[1:]
- o16 = o16[3:]
- }
- } else {
- o := 0
- for i := 0; i < len(pix); i += 1 {
- r := pix[i]
- op.buf[o ] = r
- op.buf[o+1] = r
- op.buf[o+2] = r
- o += 3
- }
- }
- write_ptr(fd, raw_data(op.buf), len(op.buf))
- } else if channels == 2 {
- if depth == 16 {
- p16 := mem.slice_data_cast([]u16, pix)
- o16 := mem.slice_data_cast([]u16, op.buf[:])
-
- bgcol := img.background
-
- #no_bounds_check for len(p16) != 0 {
- r := f64(u16(p16[0]))
- bg: f64
- if bgcol != nil {
- v := bgcol.([3]u16)[0]
- bg = f64(v)
- }
- a := f64(u16(p16[1])) / 65535.0
- l := (a * r) + (1 - a) * bg
-
- o16[0] = u16(l)
- o16[1] = u16(l)
- o16[2] = u16(l)
-
- p16 = p16[2:]
- o16 = o16[3:]
- }
- } else {
- o := 0
- for i := 0; i < len(pix); i += 2 {
- r := pix[i]; a := pix[i+1]; a1 := f32(a) / 255.0
- c := u8(f32(r) * a1)
- op.buf[o ] = c
- op.buf[o+1] = c
- op.buf[o+2] = c
- o += 3
- }
- }
- write_ptr(fd, raw_data(op.buf), len(op.buf))
- } else if channels == 4 {
- if depth == 16 {
- p16 := mem.slice_data_cast([]u16be, pix)
- o16 := mem.slice_data_cast([]u16be, op.buf[:])
-
- #no_bounds_check for len(p16) != 0 {
-
- bg := _bg(img.background, 0, 0)
- r := f32(p16[0])
- g := f32(p16[1])
- b := f32(p16[2])
- a := f32(p16[3]) / 65535.0
-
- lr := (a * r) + (1 - a) * f32(bg[0])
- lg := (a * g) + (1 - a) * f32(bg[1])
- lb := (a * b) + (1 - a) * f32(bg[2])
-
- o16[0] = u16be(lr)
- o16[1] = u16be(lg)
- o16[2] = u16be(lb)
-
- p16 = p16[4:]
- o16 = o16[3:]
- }
- } else {
- o := 0
-
- for i := 0; i < len(pix); i += 4 {
-
- x := (i / 4) % width
- y := i / width / 4
-
- _b := _bg(img.background, x, y, false)
- bgcol := [3]u8{u8(_b[0]), u8(_b[1]), u8(_b[2])}
-
- r := f32(pix[i])
- g := f32(pix[i+1])
- b := f32(pix[i+2])
- a := f32(pix[i+3]) / 255.0
-
- lr := u8(f32(r) * a + (1 - a) * f32(bgcol[0]))
- lg := u8(f32(g) * a + (1 - a) * f32(bgcol[1]))
- lb := u8(f32(b) * a + (1 - a) * f32(bgcol[2]))
- op.buf[o ] = lr
- op.buf[o+1] = lg
- op.buf[o+2] = lb
- o += 3
- }
- }
- write_ptr(fd, raw_data(op.buf), len(op.buf))
- } else {
- return false
- }
- }
- return true
- }
-*/
-package png
diff --git a/core/image/png/png_os.odin b/core/image/png/png_os.odin
index 8e0706206..c6a88fa52 100644
--- a/core/image/png/png_os.odin
+++ b/core/image/png/png_os.odin
@@ -1,19 +1,19 @@
#+build !js
package png
-import "core:os"
+import os "core:os/os2"
load :: proc{load_from_file, load_from_bytes, load_from_context}
load_from_file :: proc(filename: string, options := Options{}, allocator := context.allocator) -> (img: ^Image, err: Error) {
context.allocator = allocator
- data, ok := os.read_entire_file(filename)
- defer delete(data)
+ data, data_err := os.read_entire_file(filename, allocator)
+ defer delete(data, allocator)
- if ok {
+ if data_err == nil {
return load_from_bytes(data, options)
} else {
return nil, .Unable_To_Read_File
}
-}
+} \ No newline at end of file
diff --git a/core/image/qoi/qoi_os.odin b/core/image/qoi/qoi_os.odin
index c85fdd839..a65527d09 100644
--- a/core/image/qoi/qoi_os.odin
+++ b/core/image/qoi/qoi_os.odin
@@ -1,37 +1,34 @@
#+build !js
package qoi
-import "core:os"
-import "core:bytes"
-
-save :: proc{save_to_buffer, save_to_file}
-
-
-save_to_file :: proc(output: string, img: ^Image, options := Options{}, allocator := context.allocator) -> (err: Error) {
- context.allocator = allocator
-
- out := &bytes.Buffer{}
- defer bytes.buffer_destroy(out)
-
- save_to_buffer(out, img, options) or_return
- write_ok := os.write_entire_file(output, out.buf[:])
-
- return nil if write_ok else .Unable_To_Write_File
-}
-
+import os "core:os/os2"
+import "core:bytes"
load :: proc{load_from_file, load_from_bytes, load_from_context}
-
load_from_file :: proc(filename: string, options := Options{}, allocator := context.allocator) -> (img: ^Image, err: Error) {
context.allocator = allocator
- data, ok := os.read_entire_file(filename)
- defer delete(data)
+ data, data_err := os.read_entire_file(filename, allocator)
+ defer delete(data, allocator)
- if ok {
+ if data_err == nil {
return load_from_bytes(data, options)
} else {
return nil, .Unable_To_Read_File
}
+}
+
+save :: proc{save_to_buffer, save_to_file}
+
+save_to_file :: proc(output: string, img: ^Image, options := Options{}, allocator := context.allocator) -> (err: Error) {
+ context.allocator = allocator
+
+ out := &bytes.Buffer{}
+ defer bytes.buffer_destroy(out)
+
+ save_to_buffer(out, img, options) or_return
+ write_err := os.write_entire_file(output, out.buf[:])
+
+ return nil if write_err == nil else .Unable_To_Write_File
} \ No newline at end of file
diff --git a/core/image/tga/tga_os.odin b/core/image/tga/tga_os.odin
index a78998105..2c103b34a 100644
--- a/core/image/tga/tga_os.odin
+++ b/core/image/tga/tga_os.odin
@@ -1,34 +1,34 @@
#+build !js
package tga
-import "core:os"
-import "core:bytes"
-
-save :: proc{save_to_buffer, save_to_file}
-
-save_to_file :: proc(output: string, img: ^Image, options := Options{}, allocator := context.allocator) -> (err: Error) {
- context.allocator = allocator
-
- out := &bytes.Buffer{}
- defer bytes.buffer_destroy(out)
-
- save_to_buffer(out, img, options) or_return
- write_ok := os.write_entire_file(output, out.buf[:])
-
- return nil if write_ok else .Unable_To_Write_File
-}
+import os "core:os/os2"
+import "core:bytes"
load :: proc{load_from_file, load_from_bytes, load_from_context}
load_from_file :: proc(filename: string, options := Options{}, allocator := context.allocator) -> (img: ^Image, err: Error) {
context.allocator = allocator
- data, ok := os.read_entire_file(filename)
+ data, data_err := os.read_entire_file(filename, allocator)
defer delete(data)
- if ok {
+ if data_err == nil {
return load_from_bytes(data, options)
} else {
return nil, .Unable_To_Read_File
}
+}
+
+save :: proc{save_to_buffer, save_to_file}
+
+save_to_file :: proc(output: string, img: ^Image, options := Options{}, allocator := context.allocator) -> (err: Error) {
+ context.allocator = allocator
+
+ out := &bytes.Buffer{}
+ defer bytes.buffer_destroy(out)
+
+ save_to_buffer(out, img, options) or_return
+ write_err := os.write_entire_file(output, out.buf[:])
+
+ return nil if write_err == nil else .Unable_To_Write_File
} \ No newline at end of file