Enum printpdf::types::plugins::graphics::xobject::XObject [] [src]

pub enum XObject {
    Image(ImageXObject),
    Form(Box<FormXObject>),
    PostScript(PostScriptXObject),
}

External object that gets reference outside the PDF content stream Gets constructed similar to the ExtGState, then inserted into the /XObject dictionary on the page. You can instantiate XObjects with the /Do operator. The layer.add_xobject() (or better yet, the layer.add_image(), layer.add_form()) methods will do this for you.

Variants

Image XObject, for images

Form XObject, for PDF forms

Embedded PostScript XObject, for legacy applications You can embed PostScript in a PDF, it is not recommended

Trait Implementations

impl Debug for XObject
[src]

[src]

Formats the value using the given formatter.

impl Clone for XObject
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Into<Object> for XObject
[src]

[src]

Performs the conversion.