Question
What is logical screen descriptor?

Answers

It is always a second block in GIF file.
An area of pixels usually referred as screen, is defined by LSD.
GIF file size is defined by this area.
When the logical screen is larger than the image, some space is displayed around the image.
As per the size of the images, the logical screen size need to be set based on the width and height of the images.   Your Comment






Search
Can you Answer!!
  • Q A jet engine is used to drive a vehicle. When its mechanical efficiency will be maximum ?
  • Q What is DCF?
  • Q Who is the 8th CM of Arunachal Pradesh?
  • Q Explain what is Computer Architecture?
  • Q What do you understand by cost accountancy? What are the objectives of cost accountancy
  • Q The idea of the President is the executive head of the state has been copied from:
  • Q How do you optimize io?
  • Q How can you load fixed length records using sql*loader?
  • Q How can you scrub through your timeline without resetting the timeline size. You have a 4000 frame timeline and only 250 are visible?
  • Q how do you create customer account number ranges for external assignment?
  • Q What does the following function print? func(int i) { if(i%2)return 0; else return 1; } main() { int =3; i=func(i); i=func(i); printf(%d,i);}