Files
Minint/Report/lab2/uml/lr2-container-serialization.puml
2026-04-07 21:00:49 +03:00

43 lines
823 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@startuml
title ЛР2 ИВ1: структура контейнера и сериализация
rectangle "Файл .minint" {
rectangle "Header" as H
rectangle "Documents[]" as D
}
rectangle "Header" {
card "Signature: MININT"
card "Version"
card "Width, Height"
card "DocumentCount"
card "Reserved[8]"
}
rectangle "Document" {
card "Name"
card "FrameDelayMs"
card "PaletteCount"
card "Palette RGBA[]"
card "LayerCount"
card "Layers[]"
}
rectangle "Layer" {
card "Name"
card "IsVisible"
card "Opacity"
card "PixelIndices[]"
}
H --> D
D --> "Document"
"Document" --> "Layer"
note bottom
PixelIndices хранят индексы палитры.
Ширина индекса в файле: 1..4 байта
в зависимости от размера палитры.
end note
@enduml