Package net.dv8tion.jda.api.entities
Class MessageEmbed.ImageInfo
java.lang.Object
net.dv8tion.jda.api.entities.MessageEmbed.ImageInfo
- Enclosing class:
- MessageEmbed
Represents the information provided to embed an image.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
int
The height of the image.getProxy()
Returns anAttachmentProxy
for this embed image.The url of the image, proxied by Discord
This url is used to access the image through Discord instead of directly to prevent ip scraping.getUrl()
The url of the image.int
getWidth()
The width of the image.
-
Constructor Details
-
ImageInfo
-
-
Method Details
-
getUrl
The url of the image.- Returns:
- Possibly-null String containing the image url.
-
getProxyUrl
The url of the image, proxied by Discord
This url is used to access the image through Discord instead of directly to prevent ip scraping.- Returns:
- Possibly-null String containing the proxied image url.
-
getProxy
Returns anAttachmentProxy
for this embed image.- Returns:
- Possibly-null
AttachmentProxy
of this embed image - See Also:
-
getWidth
public int getWidth()The width of the image.- Returns:
- Non-negative, Non-zero int containing the width of the embedded image.
-
getHeight
public int getHeight()The height of the image.- Returns:
- Non-negative, Non-zero int containing the height of the embedded image.
-
equals
-