Ci-en size

Posted under General

Mitsudomoe Koubou released an illustration on the free plan of the ci-en platform. When I right-click and copy the link to the image, I get a 1920x1080 image with a warning that it's a "sample." When I copy and paste the link into the post, I get a 1280x720 image without warning. Is the 1920x1080 image artificially enlarged, or is Danbooru wrong? Which image should I post?

https://ci-en.net/creator/34549/article/1816093
asset #48391989 (1280x720)
asset #48391986 (1920x1080)

Those are two different images.
The first one comes from the header, visible from the articles list, or from embedding it elsewhere.
The second one is a sample from the article itself behind the 0-yen paywall. The actual image would be asset #48392160.

Okay, thanks. I have more questions.

1) For future reference, how should I get a PNG version?
2) How should I tag this character? It appears to be the creator's mascot, first appearing in a promotional video for the "collab cafe" for "Hyoutenka 30-do no Zetsubou." I don't know if this character has a name. I also don't know if it should be tagged as "Mitsudomoe Koubou (series)"—it doesn't appear in the games or in tweets showcasing the universe. It's only in promotional materials. Original?

https://www.youtube.com/watch?v=k08hHk_wQ-w

You get the full image url from the `data-raw` html attribute of the sample:

document.querySelectorAll(".file-player-image").forEach(el => {
  const url = new URL("https://danbooru.donmai.us/uploads/new");
  url.searchParams.set("ref", window.location.href);
  url.searchParams.set("url", el.dataset.raw);
  console.log(url.href);
});

This should be added to ci-en sample wiki.

hdk5 said in forum #441160:

document.querySelectorAll(".file-player-image").forEach(el => {
  const url = new URL("https://danbooru.donmai.us/uploads/new");
  url.searchParams.set("ref", window.location.href);
  url.searchParams.set("url", el.dataset.raw);
  console.log(url.href);
});

What am I supposed to do with this...?

1