what does concrete and abstracted means?Media files can be CONCRETE or ABSTRACTED
creation of image using codeSo you want to learn about images/graphics...does that mean concrete images/graphics, or abstract images/graphics, or both? or something else entirely different?
And when you say you want to learn about them, WHAT do you want to learn?
just like
RRR
RRR
RRR
should display as 3x3 red square
which i have done using my program
nice guideStart here: http://paulbourke.net/dataformats/bitmaps/
Note that bitmap is a class. BMP is a particular implementation of that class.
+ Reply to Thread
Results 31 to 33 of 33
-
Anonymous543Guest
-
Abstracted means all the details of what's happening at the hardware and lowest software and system levels is hidden from you. You are only presented with high level functions like "create an image object", "set the pixel at X,Y to color C", draw a rectangle of color C at X,Y", "save image object as a BMP file", "load this BMP file onto the image object" , etc. This is exactly what you don't want if you want to learn the details of how to create an image in memory, read and write data to it, and save it as BMP or PNG file.
For example, in the code you gave earlier:
Code:love.graphics.setColor(1, 0, 0) --sets color red love.graphics.rectangle("fill", 0,0, 100,100)
Similar Threads
-
Extract frames as uncompressed image files
By Fern99 in forum Newbie / General discussionsReplies: 4Last Post: 22nd Jul 2021, 10:42 -
Export PNG image sequence in Vegas 13?
By vegas13 in forum Newbie / General discussionsReplies: 7Last Post: 16th Dec 2020, 21:38 -
How To Convert A Single Video Image to PNG/BMP
By cornemuse in forum Video ConversionReplies: 9Last Post: 29th Nov 2019, 11:47 -
Converting TTML2+PNG Subtitles to BDN(XML+PNG)
By MounaLafi in forum SubtitleReplies: 6Last Post: 25th Jan 2019, 06:48 -
batch to convert all image files into BMP format
By marcorocchini in forum Newbie / General discussionsReplies: 15Last Post: 28th Dec 2017, 12:07