Skip to main content

Tile

Struct Tile 

Source
pub struct Tile {
    pub image: DynamicImage,
    pub number: i32,
    pub position: (i32, i32),
    pub coords: (i32, i32),
    pub filename: Option<PathBuf>,
}
Expand description

Represents a single tile of an image.

A Tile contains the image data, its position in the grid, pixel coordinates, and optional

Fields§

§image: DynamicImage

The image data for the tile.

§number: i32

The unique number assigned to the tile.

§position: (i32, i32)

The row and column position of the tile in the grid.

§coords: (i32, i32)

The pixel coordinates of the tile in the original image.

§filename: Option<PathBuf>

The filename of the tile, if it has been saved to disk.

Implementations§

Source§

impl Tile

Source

pub fn new( image: DynamicImage, number: i32, position: (i32, i32), coords: (i32, i32), filename: Option<PathBuf>, ) -> Self

Creates a new Tile instance.

§Arguments
  • image - The image data for the tile.
  • number - The unique number assigned to the tile.
  • position - The row and column position of the tile in the grid.
  • coords - The pixel coordinates of the tile in the original image.
  • filename - The filename of the tile, if it has been saved to disk.
§Returns

A new Tile instance.

Source

pub fn row(&self) -> i32

Returns the row position of the tile.

§Returns

The row position of the tile.

Source

pub fn column(&self) -> i32

Returns the column position of the tile.

§Returns

The column position of the tile.

Source

pub fn basename(&self) -> Option<String>

Returns the base name of the tile’s filename (without path or extension).

§Returns

The base name of the tile’s filename, or None if the filename is not set.

Source

pub fn generate_filename( &self, directory: Option<&Path>, prefix: &str, format: &str, path: bool, ) -> PathBuf

Generates a filename for the tile based on its position and format.

§Arguments
  • directory - The directory to save the tile. If None, the current working directory is used.
  • prefix - The prefix for the filename.
  • format - The format of the tile (e.g., "png", "jpg").
  • path - Whether to include the full path in the filename.
§Returns

A PathBuf representing the generated filename.

Source

pub fn save( &mut self, filename: Option<PathBuf>, format: &str, ) -> Result<(), ImageError>

Saves the tile to disk.

§Arguments
  • filename - The filename to save the tile. If None, a filename is generated using generate_filename.
  • format - The format of the tile (e.g., "png", "jpg").
§Returns

Ok(()) if the tile is saved successfully, or an error if saving fails.

Trait Implementations§

Source§

impl Clone for Tile

Source§

fn clone(&self) -> Tile

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Tile

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Tile

§

impl RefUnwindSafe for Tile

§

impl Send for Tile

§

impl Sync for Tile

§

impl Unpin for Tile

§

impl UnsafeUnpin for Tile

§

impl UnwindSafe for Tile

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.