
studyblr • stemblr • codeblr • progblr • swiftie • writer • computer science & computer engineering
75 posts
Yes, Because Professional Experience = Learning O(^o^)o
yes, because professional experience = learning o(^o^)o



does it still count as studyblr content when it’s professional development
-
arabel--la liked this · 8 months ago
-
lysjb03 liked this · 8 months ago
-
powerful-r11 liked this · 8 months ago
-
garsmacabre liked this · 8 months ago
-
pastel--lilac liked this · 8 months ago
-
between-the-pagess liked this · 8 months ago
-
inttezaar liked this · 8 months ago
-
missys-mansion-of-mistakes reblogged this · 8 months ago
-
coleo-ptere liked this · 9 months ago
-
unravelingsofanarrator liked this · 9 months ago
-
dreamingstuf7 liked this · 9 months ago
-
grabthepen reblogged this · 9 months ago
-
buriedheartbeats liked this · 9 months ago
-
chaiandtchaikovsky reblogged this · 9 months ago
-
valezx liked this · 9 months ago
-
peachysimp liked this · 9 months ago
-
pridou reblogged this · 9 months ago
-
pridoo liked this · 9 months ago
-
shy-and-reserved reblogged this · 9 months ago
-
barbasbackside reblogged this · 9 months ago
-
barbasbackside liked this · 9 months ago
-
minsulies liked this · 9 months ago
-
perpulchra liked this · 9 months ago
-
henfox liked this · 9 months ago
-
darkacademicc reblogged this · 9 months ago
-
srxracha reblogged this · 9 months ago
-
stuckinapril liked this · 9 months ago
-
sleepinnyc liked this · 9 months ago
-
712virginia liked this · 9 months ago
-
sentimentalfuturist reblogged this · 9 months ago
-
legallytired reblogged this · 9 months ago
-
star--707 liked this · 9 months ago
-
grabthepen reblogged this · 9 months ago
-
actualising-study reblogged this · 9 months ago
-
matrykoshkas liked this · 9 months ago
-
sin-sinamon liked this · 9 months ago
-
teacupsandrainydays liked this · 9 months ago
-
triwku liked this · 9 months ago
-
scorpionand liked this · 9 months ago
-
teareads liked this · 9 months ago
-
moriartysheadspace liked this · 9 months ago
-
fawnoversaturn liked this · 9 months ago
-
tulip-jojo liked this · 9 months ago
-
furiousllamastrawberry liked this · 9 months ago
-
soletyue reblogged this · 9 months ago
-
honeynebula reblogged this · 9 months ago
-
honeynebula liked this · 9 months ago
-
davalexandra liked this · 9 months ago
-
thefatiguedflautist liked this · 9 months ago
-
stutee liked this · 9 months ago
More Posts from Honeynebula
empowering bbe Tuesday afternoon; whatever that means
what is your daylist title on spotify today?
woah! it's like post-impressionism!!!! (if I'm correct) 🤔😍
thinking about anastasia trusova paintings again
Convert HTML to Image: A Step-by-Step Guide ✨

Do you want to turn some HTML code you've made that's on your website and have a way to convert it into an image for you to save?
Well, look no further! I too wanted to do the same thing but funny enough, there weren't any straightforward tutorials out there that could show you how! After hours of searching, I finally discovered the solution~!
This is an old tutorial I made 🐼

💛 Set your environment
Before we dive into the conversion process, I'll assume you already have your HTML code ready. What you want to learn is how to turn it into an image file. You should have a good grasp of HTML and JavaScript. For this tutorial, we'll use the following HTML code example:

We won't include the CSS code, as it doesn't affect this tutorial. The JavaScript file (script.js) at the bottom of the body element is where we'll add the functionality for the conversion.
Your page should resemble the following:

As you can see, the "Click me" button will handle the conversion. We aim to convert everything within the div.info-div into an image.
💛 Using the html2canvas JavaScript Library
The html2canvas library allows you to take screenshots of webpages and target specific elements on a screen. Here are the steps to include the library in your project:
The steps to put the library in your project:
Visit the html2canvas website for more information.
Copy the CDN link from here

and include it in a script tag in your project's head tag in the HTML file:

That's it for including the library on the HTML side. Now, let's move on to the JavaScript code.
💛 JavaScript Functionality
Here's the JavaScript code to handle the conversion:

In this code, I want to turn the whole div.info-div into an image, I put it into a variable in const div = document.querySelector(".info-div");.
I also put the button into a variable in const button = document.querySelector("button");
I added a click event listener to the button so when the user clicks the button, it will follow the code inside of the event listener!
You can find similar code like this in the documentation of the html2canvas library:

What is happening here is:
We add the div (or what the element we want to take an image of) into the html2canvas([element]).then((canvas)
Added the image file type url to a variable = const imageDataURL = canvas.toDataURL("image/png"); - You can replace the png to other image file types such as jpg, jpeg etc
Created an anchor/link tag, added the href attribute to imageDataURL
The download attribute is where we will give the default name to the image file, I added "dog.png"
Perform the click() function to the anchor tag so it starts to download the image we created
And that's it!
💛 The End
And that's it! You've successfully learned how to turn your HTML into an image. It's a great way to save and share your web content in a unique format.

If you have any questions or need further clarification, please comfortable to ask. Enjoy converting your HTML into images! 💖🐼

this is so cute, like a tiny adventurer


Frolicking and flower picking 🌼