-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Julia 1.0 Programming Cookbook
By :
In Julia, you are able to define your own composite types, as explained in the previous recipe. However, you can also define your own raw-bytes type, like Float64 or UInt32.
ARGB (see https://en.wikipedia.org/wiki/RGBA_color_space#ARGB_(word-order)) is a method of encoding the color of a pixel, where A (
In the GitHub repository for this recipe, you will find the commands.txt file that contains the presented sequence of shell and Julia commands. Additionally, in the argb.jl file you can find the definitions of the ARGB type and related methods used in this recipe.
Now open your favorite terminal to execute the commands.
Start by inspecting the contents of the argb.jl file. First, we...