tiny.png.DecodeBounds
Defined in tiny.png.
API (5)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/png/src/decode/plan.zig:5
zig
pub const Bounds = struct { input_bytes: usize, image_pixels: usize, source_row_bytes: usize, idat_bytes: usize, pub fn exact(bytes: []const u8) Error!Bounds { const plan = try Plan.inspect(bytes, .{ .input_bytes = bytes.len, .image_pixels = std.math.maxInt(usize), .source_row_bytes = std.math.maxInt(usize), .idat_bytes = bytes.len, }); return plan.exactBounds(); }};Source: lib/png/src/root.zig:25
zig
pub const DecodeBounds = decode.Bounds;Also reachable as
Audit
| Definitions | 2 |
|---|---|
| Public names | 4 |
| Members | 4 |
| Version | 26.7.0 |
| Revision | daab053ee433 |