Skip to content

Commit

Permalink
Renamed drawables folder to drawing.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Jul 21, 2024
1 parent 615377d commit e4662fd
Show file tree
Hide file tree
Showing 44 changed files with 101 additions and 101 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
46 changes: 23 additions & 23 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@ export * from './defines/defines-creator';
export * from './defines/defines';
export * from './defines/magick-define';
export * from './disposable';
export * from './drawables/drawable-color';
export * from './drawables/drawable-fill-color';
export * from './drawables/drawable-fill-opacity';
export * from './drawables/drawable-font-point-size';
export * from './drawables/drawable-font';
export * from './drawables/drawable-gravity';
export * from './drawables/drawable-line';
export * from './drawables/drawable-point';
export * from './drawables/drawable-rectangle';
export * from './drawables/drawable-round-rectangle';
export * from './drawables/drawable-stroke-color';
export * from './drawables/drawable-stroke-width';
export * from './drawables/drawable-text-alignment';
export * from './drawables/drawable-text-antialias';
export * from './drawables/drawable-text-decoration';
export * from './drawables/drawable-text-interline-spacing';
export * from './drawables/drawable-text-interword-spacing';
export * from './drawables/drawable-text-kerning';
export * from './drawables/drawable-text-under-color';
export * from './drawables/drawable-text';
export * from './drawables/drawable';
export * from './drawables/drawables';
export * from './drawables/drawing-wand';
export * from './drawing/drawable-color';
export * from './drawing/drawable-fill-color';
export * from './drawing/drawable-fill-opacity';
export * from './drawing/drawable-font-point-size';
export * from './drawing/drawable-font';
export * from './drawing/drawable-gravity';
export * from './drawing/drawable-line';
export * from './drawing/drawable-point';
export * from './drawing/drawable-rectangle';
export * from './drawing/drawable-round-rectangle';
export * from './drawing/drawable-stroke-color';
export * from './drawing/drawable-stroke-width';
export * from './drawing/drawable-text-alignment';
export * from './drawing/drawable-text-antialias';
export * from './drawing/drawable-text-decoration';
export * from './drawing/drawable-text-interline-spacing';
export * from './drawing/drawable-text-interword-spacing';
export * from './drawing/drawable-text-kerning';
export * from './drawing/drawable-text-under-color';
export * from './drawing/drawable-text';
export * from './drawing/drawable';
export * from './drawing/drawables';
export * from './drawing/drawing-wand';
export * from './enums/alpha-option';
export * from './enums/auto-threshold-method';
export * from './enums/channels';
Expand Down
4 changes: 2 additions & 2 deletions src/magick-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Disposable } from './internal/disposable';
import { DisposableArray } from './internal/disposable-array';
import { DistortMethod } from './enums/distort-method';
import { DistortSettings } from './settings/distort-settings';
import { DrawingWand } from './drawables/drawing-wand';
import { DrawingWand } from './drawing/drawing-wand';
import { Endian } from './enums/endian';
import { ErrorMetric } from './enums/error-metric';
import { EvaluateOperator } from './enums/evaluate-operator';
Expand All @@ -29,7 +29,7 @@ import { GifDisposeMethod } from './enums/gif-dispose-method';
import { Gravity } from './enums/gravity';
import { ImageMagick } from './image-magick';
import { IDisposable } from './disposable';
import { IDrawable } from './drawables/drawable';
import { IDrawable } from './drawing/drawable';
import { ImageProfile, IImageProfile } from './profiles/image-profile';
import { Interlace } from './enums/interlace';
import { MagickColor, IMagickColor } from './magick-color';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableColor } from '@src/drawables/drawable-color';
import { DrawableColor } from '@src/drawing/drawable-color';
import { MagickColors } from '@src/magick-colors';
import { PaintMethod } from '@src/enums/paint-method';
import { TestImages } from '@test/test-images';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableColor } from '@src/drawables/drawable-color';
import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableColor } from '@src/drawing/drawable-color';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { MagickColors } from '@src/magick-colors';
import { PaintMethod } from '@src/enums/paint-method';
import { TestImages } from '@test/test-images';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableColor } from '@src/drawables/drawable-color';
import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableFillOpacity } from '@src/drawables/drawable-fill-opacity';
import { DrawableColor } from '@src/drawing/drawable-color';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawableFillOpacity } from '@src/drawing/drawable-fill-opacity';
import { MagickColor } from '@src/magick-color';
import { PaintMethod } from '@src/enums/paint-method';
import { Percentage } from '@src/types/percentage';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableFont } from '@src/drawables/drawable-font';
import { DrawableFontPointSize } from '@src/drawables/drawable-font-point-size';
import { DrawableGravity } from '@src/drawables/drawable-gravity';
import { DrawableText } from '@src/drawables/drawable-text';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableGravity } from '@src/drawing/drawable-gravity';
import { DrawableText } from '@src/drawing/drawable-text';
import { Gravity } from '@src/enums/gravity';
import { MagickColors } from '@src/magick-colors';
import { TestFonts } from '@test/test-fonts';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableLine } from '@src/drawables/drawable-line';
import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableLine } from '@src/drawing/drawable-line';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { MagickColors } from '@src/magick-colors';
import { TestImages } from '@test/test-images';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawablePoint } from '@src/drawables/drawable-point';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawablePoint } from '@src/drawing/drawable-point';
import { MagickColor } from '@src/magick-color';
import { TestImages } from '@test/test-images';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableRectangle } from '@src/drawables/drawable-rectangle';
import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableRectangle } from '@src/drawing/drawable-rectangle';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { MagickColors } from '@src/magick-colors';
import { TestImages } from '@test/test-images';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableRoundRectangle } from '@src/drawables/drawable-round-rectangle';
import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableRoundRectangle } from '@src/drawing/drawable-round-rectangle';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { MagickColors } from '@src/magick-colors';
import { TestImages } from '@test/test-images';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableLine } from '@src/drawables/drawable-line';
import { DrawableStrokeColor } from '@src/drawables/drawable-stroke-color';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawableLine } from '@src/drawing/drawable-line';
import { DrawableStrokeColor } from '@src/drawing/drawable-stroke-color';
import { MagickColors } from '@src/magick-colors';
import { TestImages } from '@test/test-images';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableLine } from '@src/drawables/drawable-line';
import { DrawableStrokeColor } from '@src/drawables/drawable-stroke-color';
import { DrawableStrokeWidth } from '@src/drawables/drawable-stroke-width';
import { DrawableLine } from '@src/drawing/drawable-line';
import { DrawableStrokeColor } from '@src/drawing/drawable-stroke-color';
import { DrawableStrokeWidth } from '@src/drawing/drawable-stroke-width';
import { MagickColors } from '@src/magick-colors';
import { TestImages } from '@test/test-images';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFont } from '@src/drawables/drawable-font';
import { DrawableFontPointSize } from '@src/drawables/drawable-font-point-size';
import { DrawableText } from '@src/drawables/drawable-text';
import { DrawableTextAlignment } from '@src/drawables/drawable-text-alignment';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextAlignment } from '@src/drawing/drawable-text-alignment';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';
import { TextAlignment } from '@src/enums/text-alignment';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFont } from '../../src/drawables/drawable-font';
import { DrawableFontPointSize } from '../../src/drawables/drawable-font-point-size';
import { DrawableText } from '../../src/drawables/drawable-text';
import { DrawableTextAntialias } from '../../src/drawables/drawable-text-antialias';
import { TestFonts } from '../test-fonts';
import { TestImages } from '../test-images';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextAntialias } from '@src/drawing/drawable-text-antialias';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';

describe('DrawableTextAntialias', () => {
it('should write text with antialias to the image', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFont } from '../../src/drawables/drawable-font';
import { DrawableFontPointSize } from '../../src/drawables/drawable-font-point-size';
import { DrawableText } from '../../src/drawables/drawable-text';
import { DrawableTextDecoration } from '../../src/drawables/drawable-text-decoration';
import { TestFonts } from '../test-fonts';
import { TestImages } from '../test-images';
import { TextDecoration } from '../../src/enums/text-decoration';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextDecoration } from '@src/drawing/drawable-text-decoration';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';
import { TextDecoration } from '@src/enums/text-decoration';

describe('DrawableTextDecoration', () => {
it('should write text without decoration to the image', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFillColor } from '../../src/drawables/drawable-fill-color';
import { DrawableFont } from '../../src/drawables/drawable-font';
import { DrawableFontPointSize } from '../../src/drawables/drawable-font-point-size';
import { DrawableText } from '../../src/drawables/drawable-text';
import { DrawableTextInterlineSpacing } from '../../src/drawables/drawable-text-interline-spacing';
import { MagickColor } from '../../src/magick-color';
import { TestFonts } from '../test-fonts';
import { TestImages } from '../test-images';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextInterlineSpacing } from '@src/drawing/drawable-text-interline-spacing';
import { MagickColor } from '@src/magick-color';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';

describe('DrawableTextInterlineSpacing', () => {
it('should write text with default interline spacing', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFont } from '../../src/drawables/drawable-font';
import { DrawableFontPointSize } from '../../src/drawables/drawable-font-point-size';
import { DrawableText } from '../../src/drawables/drawable-text';
import { DrawableTextInterwordSpacing } from '../../src/drawables/drawable-text-interword-spacing';
import { TestFonts } from '../test-fonts';
import { TestImages } from '../test-images';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextInterwordSpacing } from '@src/drawing/drawable-text-interword-spacing';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';

describe('DrawableTextInterwordSpacing', () => {
it('should write text with default interword spacing', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFillColor } from '../../src/drawables/drawable-fill-color';
import { DrawableFont } from '../../src/drawables/drawable-font';
import { DrawableFontPointSize } from '../../src/drawables/drawable-font-point-size';
import { DrawableText } from '../../src/drawables/drawable-text';
import { DrawableTextKerning } from '../../src/drawables/drawable-text-kerning';
import { MagickColor } from '../../src/magick-color';
import { TestFonts } from '../test-fonts';
import { TestImages } from '../test-images';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextKerning } from '@src/drawing/drawable-text-kerning';
import { MagickColor } from '@src/magick-color';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';

describe('DrawableTextKerning', () => {
it('should write text with kerning to the image', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableFont } from '../../src/drawables/drawable-font';
import { DrawableFontPointSize } from '../../src/drawables/drawable-font-point-size';
import { DrawableText } from '../../src/drawables/drawable-text';
import { DrawableTextUnderColor } from '../../src/drawables/drawable-text-under-color';
import { MagickColors } from '../../src/magick-colors';
import { TestFonts } from '../test-fonts';
import { TestImages } from '../test-images';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableTextUnderColor } from '@src/drawing/drawable-text-under-color';
import { MagickColors } from '@src/magick-colors';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';

describe('DrawableTextUnderColor', () => {
it('should write text without text under color to the image', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { DrawableText } from '@src/drawables/drawable-text';
import { DrawableFillColor } from '@src/drawables/drawable-fill-color';
import { DrawableFont } from '@src/drawables/drawable-font';
import { DrawableFontPointSize } from '@src/drawables/drawable-font-point-size';
import { DrawableText } from '@src/drawing/drawable-text';
import { DrawableFillColor } from '@src/drawing/drawable-fill-color';
import { DrawableFont } from '@src/drawing/drawable-font';
import { DrawableFontPointSize } from '@src/drawing/drawable-font-point-size';
import { MagickColor } from '@src/magick-color';
import { TestFonts } from '@test/test-fonts';
import { TestImages } from '@test/test-images';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Dirk Lemstra https://github.com/dlemstra/magick-wasm.
// Licensed under the Apache License, Version 2.0.

import { Drawables } from '@src/drawables/drawables';
import { Drawables } from '@src/drawing/drawables';
import { TestFonts } from '@test/test-fonts';

describe('Drawables#fontTypeMetrics', () => {
Expand Down

0 comments on commit e4662fd

Please sign in to comment.