CreditImageAttributes: {
    default-x: number | null;
    default-y: number | null;
    halign: "left" | "center" | "right" | null;
    height: number | null;
    id: string | null;
    relative-x: number | null;
    relative-y: number | null;
    source: string | null;
    type: string | null;
    valign: "top" | "middle" | "bottom" | null;
    width: number | null;
}

Type declaration

  • default-x: number | null

    Changes the computation of the default horizontal position. The origin is changed relative to the bottom left-hand corner of the specified page. Positive x is right and negative x is left.

  • default-y: number | null

    Changes the computation of the default vertical position. The origin is changed relative to the bottom left-hand corner of the specified page. Positive y is up and negative y is down.

  • halign: "left" | "center" | "right" | null

    Indicates horizontal alignment to the left, center, or right of the image. Default is implementation-dependent.

  • height: number | null

    Used to size and scale an image. The image should be scaled independently in X and Y if both height and width are specified. If only height is specified, the image should be scaled proportionally to fit in the specified Y dimension.

  • id: string | null

    Specifies an ID that is unique to the entire document.

  • relative-x: number | null

    Changes the horizontal position relative to the default position, either as computed by the individual program, or as overridden by the default-x attribute. Positive x is right and negative x is left.

  • relative-y: number | null

    Changes the vertical position relative to the default position, either as computed by the individual program, or as overridden by the default-y attribute. Positive y is up and negative y is down.

  • source: string | null

    The URL for the image file.

  • type: string | null

    The MIME type for the image file format. Typical choices include application/postscript, image/gif, image/jpeg, image/png, and image/tiff.

  • valign: "top" | "middle" | "bottom" | null

    Indicates vertical alignment to the top, middle, or bottom of the image. The default is implementation-dependent.

  • width: number | null

    Used to size and scale an image. The image should be scaled independently in X and Y if both height and width are specified. If only width is specified, the image should be scaled proportionally to fit in the specified X dimension.

Generated using TypeDoc