using bitcore graphic as advertisement
I've recently started a book on cryptocurrencies, and I decided to create a 'donation' page in the book with my bitcore address and a bitcore graphic above it. This serves a double purpose : to receive extra income, but also to advertise Bitcore. Since the intended audience of the book consists of investors of newly tradeable cryptocurrencies who want to research those coins, I figure that having the bitcore logo on the donation page would make them wonder "well, what cryptocurrency is that? furthermore, since the author prefers to receive donations using that currency, maybe there is something to it." and hopefully those thoughts would lead them to also investigate BTX. I plan on coming out with a new book every month (publishing it in stages, covering the currencies as they get accepted onto coinmarketcap during that month) with the donation page in each book, so that the number of investors who become aware of BTX increases over time - assuming of course that the book doesn't flop, which is always a possibility, as I am not exactly a famous author.
Anyways, I mention it here to plant the idea of creating such a donation page for any other authors or budding authors out there who plan to write books about crypto or their experiences with it. The way I made the page was by following these steps :
- go here : https://bitcore.cc/resources/eco-system-2/ , and scroll all the way down to the bottom. You will see some "press kit" stuff that you can download. I downloaded "Bitcore Press Basic."
- within that zip, I used this graphic : BitcoreLogoPortailFlat1000x673px.png. note the title helpfully tells you the number of pixels in the horizontal and vertical direction, in case you are not sure how to determine that info from your operating system
- I am writing my book in html format before converting to pdf. This allows me to scale the image to fit on the page. After some experimenting with the page size I wanted, I ended up scaling it by making an image tag, referencing the image, and giving it a css class name. Then in the css file I defined the class like this : .image1000_673 { display: block; width: 550px; height: 370.15px; margin: auto} . I got this by taking the width that I wanted (550 px), then getting the aspect ratio by dividing it by the image size (i.e. 550 / 1000 ), then multiplying the vertical size (673) by that ratio to get the value 370.15 for the height. Then I converted the html to pdf.
If you want to see what the donation page looks like, you can see it for free here :
https://leanpub.com/coinspectre_2018_12 (click on "read free sample"). Let me know if you have suggestions on how to make it look better. Again, I recommend that others out there do similar things if you are putting content out on the web, as every little bit of advertising for BTX can help its adoption rate.