L'API Ink è modulare, quindi puoi utilizzare solo ciò che ti serve.
Bracciate
Il modulo tratti funge da base dell'API Ink. I tipi di dati chiave all'interno di questo modulo sono:
StrokeInputBatch: rappresenta una serie di input del puntatore, inclusi posizione, timestamp e, facoltativamente, pressione, inclinazione e orientamento.InProgressStroke: Rappresenta un tratto in fase di disegno.InProgressStrokeviene utilizzato per eseguire il rendering di tratti parziali con bassa latenza e per creare ilStrokefinale una volta completato l'input, dopodiché l'oggetto può essere riutilizzato. `InProgressStrokeis used byInProgressStrokesView.Stroke: una rappresentazione immutabile di un tratto finalizzato con geometria fissa. OgniStrokeha unImmutableStrokeInputBatch(punti di input), unoBrush(stile) e unaPartitionedMesh(forma geometrica). Puoi archiviare, manipolare e visualizzare i tratti all'interno dell'applicazione.
Geometria
Il modulo Geometry supporta operazioni geometriche su forme primitive (utilizzando classi dedicate come Box e Vec), nonché forme arbitrarie (utilizzando PartitionedMesh), tra cui il rilevamento e la trasformazione delle intersezioni. PartitionedMesh può contenere anche dati aggiuntivi per supportare il rendering.
Pennello
The brush module defines the style of strokes. It
consists of two main parts:
Brush: Specifies the style of a stroke including base color, base size, andBrushFamily.BrushFamilyis analogous to a font family, it defines a stroke's style. For example, aBrushFamilycan represent a specific style of marker or highlighter, allowing strokes with different sizes and colors to share that style.StockBrushes: Provides factory functions for creating ready-to-useBrushFamilyinstances.
Authoring
The Authoring module lets you capture user pointer input and render it as low-latency strokes on the screen in real time. It provides an InProgressStrokesView, which processes motion events and displays the strokes as they are drawn.
Once a stroke is completed, the view notifies the client application by means
of a registered callback
(InProgressStrokesFinishedListener). The callback lets
the application retrieve the finished stroke for rendering or storage.
Rendering
Il modulo Rendering ti aiuta a disegnare tratti di inchiostro su un Android
Canvas.
Fornisce CanvasStrokeRenderer per Compose e
ViewStrokeRenderer per i layout basati sulle visualizzazioni. Questi
renderer sono progettati per il rendering ad alte prestazioni e contribuiscono a fornire
immagini di alta qualità, incluso l'antialiasing.
Per eseguire il rendering dei tratti, chiama il metodo create() per ottenere un'istanza CanvasStrokeRenderer. Poi, chiama il metodo draw() per
visualizzare i tratti finiti (Stroke) o in corso
(InProgressStroke) su un Canvas.
Puoi trasformare il canvas quando disegni un tratto. Alcuni esempi includono panoramica,
zoom e rotazione. Per eseguire il rendering del tratto correttamente, devi anche passare la
trasformazione canvas a CanvasStrokeRenderer.draw.
Per evitare di monitorare separatamente la trasformazione canvas, utilizza
ViewStrokeRenderer.
Spazio di archiviazione
The storage module provides utilities for
efficiently serializing and deserializing stroke data, primarily focusing
on StrokeInputBatch.
The module uses protocol buffers and optimized delta compression techniques, resulting in significant storage savings compared to naive methods.
The storage module simplifies saving, loading, and sharing strokes.